diff --git a/.gitignore b/.gitignore index 435cadd12..ec8514e6e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ __pycache__/ *.pyc m5out/ packer - # For jekyll _site .jekyll-cache diff --git a/src/arm-ubuntu/README.md b/src/arm-ubuntu/README.md deleted file mode 100644 index d5dd071fc..000000000 --- a/src/arm-ubuntu/README.md +++ /dev/null @@ -1,201 +0,0 @@ ---- -title: Linux arm-ubuntu image -tags: - - arm - - fullsystem -layout: default -permalink: resources/arm-ubuntu -shortdoc: > - Resources to build a generic arm-ubuntu disk image. -author: ["Hoa Nguyen", "Kaustav Goswami"] ---- - -This document provides instructions to create the "arm-ubuntu" image and -points to the gem5 component that would work with the disk image. The -arm-ubuntu disk image is based on Ubuntu's server cloud image for -arm available at (https://cloud-images.ubuntu.com/focal/current/). -The `.bashrc` file would be modified in such a way that it executes -a script passed from the gem5 configuration files (using the `m5 readfile` -instruction). - -The instructions for bringing up QEMU emulation are based on -[Ubuntu's Wiki](https://wiki.ubuntu.com/ARM64/QEMU), -and the instructions for creating a cloud disk image are based on -[this guide](https://gist.github.com/oznu/ac9efae7c24fd1f37f1d933254587aa4). -More information about cloud-init can be found -[here](https://cloudinit.readthedocs.io/en/latest/topics/examples.html). - -We assume the following directory structure while following the instructions -in this README file: - -``` -arm-ubuntu/ - |___ gem5/ # gem5 source code (to be cloned here) - | - |___ disk-image/ - | |___ aarch64-ubuntu.img # The ubuntu disk image should be downloaded and modified here - | |___ shared/ # Auxiliary files needed for disk creation - | | |___ serial-getty@.service # Auto-login script - | |___ arm-ubuntu/ - | |___ cloud.txt # the cloud config, to be created - | |___ gem5_init.sh # The script to be appended to .bashrc on the disk image - | |___ post-installation.sh # The script manipulating the disk image - | |___ arm-ubuntu.json # The Packer script - | - | - |___ README.md # This README file -``` - -## Building the disk image - -This requires an ARM cross compiler to be installed. The disk image is a 64-bit -ARM 64 (aarch64) disk image. Therefore, we only focus on the 64-bit version of -the cross compiler. It can be installed by: - -```sh -sudo apt-get install g++-10-aarch64-linux-gnu gcc-10-aarch64-linux-gnu -``` - -In order to build the ARM based Ubuntu disk-image for with gem5, build the m5 -utility in `gem5/util/m5` using the following: - -```sh -git clone https://gem5.googlesource.com/public/gem5 -cd gem5/util/m5 -scons build/arm64/out/m5 -``` - -Troubleshooting: You may need to edit the SConscript to point to the correct -cross compiler. -``` -... -main['CXX'] = '${CROSS_COMPILE}g++-10' -... -``` - -# Installing QEMU for aarch64 - -On the host machine, - -```sh -sudo apt-get install qemu-system-arm qemu-efi -``` - -# Installing cloud utilities - -On the host machine, - -```sh -sudo apt-get install cloud-utils -``` - -# Downloading the cloud disk image - -In the `arm-ubuntu/disk-image/` directory, - -```sh -wget https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-arm64.img -``` - -# Booting the disk image using QEMU - -## Generating an SSH key pair -```sh -ssh-keygen -t rsa -b 4096 -``` -Leave all prompted fields empty and hit enter. This will generate a public and -private key pair in files `~/.ssh/id_rsa` and `~/.ssh/id_rsa.pub`. If your username -is different from what is printed by command `whoami`, then add `-C "*"` -to the command: -```sh -ssh-keygen -t rsa -b 4096 -C "*" -``` - -## Making a cloud config file - -First, we need a cloud config that will have the authorization information -keys for logging in the machine. - -In the `arm-ubuntu/disk-image/arm-ubuntu` directory, create a `cloud.txt` file -with the following content, - -```sh -#cloud-config -users: - - name: ubuntu <- change this name to the current user (use `whoami`) - ssh-authorized-keys: - - ssh-rsa AAAAABBCCCCCCCrNJfweeeeee <- insert the rsa key here (typically `cat ~/.ssh/id_rsa.pub`) - sudo: ['ALL=(ALL) NOPASSWD:ALL'] - groups: sudo - shell: /bin/bash - homedir: /home/ubuntu <- change this to the home directory of `whoami` -``` - -* Note: Do not leave stray spaces in the `cloud.txt` file. -* If your username is different from what is printed by command `whoami`, then use that for parameter "name" in cloud.txt - -More information about generating an ssh rsa key is available -[here](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#generating-a-new-ssh-key). -You can ignore the GitHub email address part. - -## Booting the cloud disk image with the cloud config file -In the `arm-ubuntu/disk-image` directory, - -```sh -dd if=/dev/zero of=flash0.img bs=1M count=64 -dd if=/usr/share/qemu-efi/QEMU_EFI.fd of=flash0.img conv=notrunc -dd if=/dev/zero of=flash1.img bs=1M count=64 -cloud-localds --disk-format qcow2 cloud.img arm-ubuntu/cloud.txt -wget https://releases.linaro.org/components/kernel/uefi-linaro/latest/release/qemu64/QEMU_EFI.fd -qemu-system-aarch64 \ - -smp 2 \ - -m 1024 \ - -M virt \ - -cpu cortex-a57 \ - -bios QEMU_EFI.fd \ - -nographic \ - -device virtio-blk-device,drive=image \ - -drive if=none,id=image,file=focal-server-cloudimg-arm64.img \ - -device virtio-blk-device,drive=cloud \ - -drive if=none,id=cloud,file=cloud.img \ - -netdev user,id=user0 -device virtio-net-device,netdev=eth0 \ - -netdev user,id=eth0,hostfwd=tcp::5555-:22 -``` - -## Manipulating the disk image - -When the qemu instance has fully booted, cloud-init has completed, and while it -is still running, we will use Packer to connect to the virtual machine and -manipulate the disk image. Before doing that, we need to add the private key using `ssh-add`. - -```sh -ssh-add ~/.ssh/id_rsa -``` - -If the image was booted in qemu on a port number other than 5555, edit the `ssh_port` -parameter in `arm-ubuntu/arm-ubuntu.json` accordingly. The disk manipulation -process is automated. If your username is different from what is printed by -command `whoami`, then edit `build.sh` and change the value of `USER` to `""`. -Then in the `arm-ubuntu/disk-image/` directory, - -```sh -chmod +x build.sh -./build.sh -``` - -`build.sh` also verifies the cloud.txt and modifies the arm-ubuntu.json -accordingly. The packer script, executed by `build.sh` disables systemd. In -case you need to enable systemd stuff, remove the last two provisioners from -the arm-ubuntu.json file. - -Note that after executing the packer script, you will not be able to emulate -this disk image in qemu. - -## Preparing the disk image for gem5 - -We need to finalize the image before we can use it with gem5. This is done by: - -```sh -qemu-img convert -f qcow2 -O raw focal-server-cloudimg-arm64.img arm64-ubuntu-focal-server.img -rm focal-server-cloudimg-arm64.img -``` diff --git a/src/arm-ubuntu/arm-ubuntu-24-04.pkr.hcl b/src/arm-ubuntu/arm-ubuntu-24-04.pkr.hcl deleted file mode 100644 index e421fefb7..000000000 --- a/src/arm-ubuntu/arm-ubuntu-24-04.pkr.hcl +++ /dev/null @@ -1,95 +0,0 @@ -packer { - required_plugins { - qemu = { - source = "github.com/hashicorp/qemu" - version = "~> 1" - } - } -} - -variable "image_name" { - type = string - default = "arm-ubuntu" -} - -variable "ssh_password" { - type = string - default = "12345" -} - -variable "ssh_username" { - type = string - default = "gem5" -} - -source "qemu" "initialize" { - boot_command = [ - "c", - "linux /casper/vmlinuz autoinstall ds=nocloud-net\\;s=http://{{.HTTPIP}}:{{.HTTPPort}}/ --- ", - "", - "initrd /casper/initrd", - "", - "boot", - "", - "" - ] - cpus = "4" - disk_size = "4600" - format = "raw" - headless = "true" - http_directory = "http-24-04" - iso_checksum = "sha256:d2d9986ada3864666e36a57634dfc97d17ad921fa44c56eeaca801e7dab08ad7" - iso_urls = ["https://cdimage.ubuntu.com/releases/24.04/release/ubuntu-24.04-live-server-arm64.iso"] - memory = "8192" - output_directory = "disk-image-24-04" - qemu_binary = "/usr/bin/qemu-system-aarch64" - qemuargs = [ ["-boot", "order=dc"], - ["-bios", "./files/flash0.img"], - ["-cpu", "host"], - ["-enable-kvm"], - ["-machine", "virt"], - ["-machine", "gic-version=3"], - ["-vga", "virtio"], - ["-device","virtio-gpu-pci"], - ["-device", "qemu-xhci"], - ["-device","usb-kbd"], - - ] - shutdown_command = "echo '${var.ssh_password}'|sudo -S shutdown -P now" - ssh_password = "${var.ssh_password}" - ssh_username = "${var.ssh_username}" - ssh_wait_timeout = "60m" - vm_name = "${var.image_name}" - ssh_handshake_attempts = "1000" -} - -build { - sources = ["source.qemu.initialize"] - - provisioner "file" { - destination = "/home/gem5/" - source = "files/exit.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/gem5_init.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/after_boot.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/serial-getty@.service" - } - - provisioner "shell" { - execute_command = "echo '${var.ssh_password}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'" - scripts = ["scripts/post-installation.sh"] - expect_disconnect = true - } - -} diff --git a/src/arm-ubuntu/build.sh b/src/arm-ubuntu/build.sh deleted file mode 100755 index d60adefd7..000000000 --- a/src/arm-ubuntu/build.sh +++ /dev/null @@ -1,27 +0,0 @@ -PACKER_VERSION="1.10.0" - -if [ ! -f ./packer ]; then - wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_arm64.zip; - unzip packer_${PACKER_VERSION}_linux_arm64.zip; - rm packer_${PACKER_VERSION}_linux_arm64.zip; -fi - -# Check if the configuration file variable is provided -if [ -z "$1" ]; then - echo "Usage: $0 " - exit 1 -fi - -# Store the configuration file name from the command line argument -config_file="$1" - -# Check if the specified configuration file exists -if [ -f "$config_file" ]; then - # Install the needed plugins - ./packer init "$config_file" - # Build the image - ./packer build "$config_file" -else - echo "Error: Configuration file '$config_file' not found." - exit 1 -fi diff --git a/src/arm-ubuntu/files/gem5_init.sh b/src/arm-ubuntu/files/gem5_init.sh deleted file mode 100755 index 5ed2017a2..000000000 --- a/src/arm-ubuntu/files/gem5_init.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -# mount /proc and /sys -mount -t proc /proc /proc -mount -t sysfs /sys /sys -# Read /proc/cmdline and parse options -cmdline=$(cat /proc/cmdline) -no_systemd=false - -# gem5-bridge exit signifying that kernel is booted -printf "Kernel booted, starting gem5 init...\n" -gem5-bridge exit - -if [[ $cmdline == *"no_systemd"* ]]; then - no_systemd=true -fi - -# Run systemd via exec if not disabled -if [[ $no_systemd == false ]]; then - # gem5-bridge exit signifying that systemd will be booted - printf "Starting systemd...\n" - exec /lib/systemd/systemd -else - exec su - gem5 -fi diff --git a/src/arm-ubuntu/scripts/post-installation.sh b/src/arm-ubuntu/scripts/post-installation.sh deleted file mode 100755 index 8bd0bbbed..000000000 --- a/src/arm-ubuntu/scripts/post-installation.sh +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2024 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -echo 'Post Installation Started' - -echo 'installing packages' -apt-get update -apt-get install -y scons -apt-get install -y git -apt-get install -y vim -apt-get install -y build-essential - -echo "Installing serial service for autologin after systemd" -mv /home/gem5/serial-getty@.service /lib/systemd/system/ - -echo "Installing the gem5 init script in /sbin" -mv /home/gem5/gem5_init.sh /sbin -mv /sbin/init /sbin/init.old -ln -s /sbin/gem5_init.sh /sbin/init - -# Add after_boot.sh to bashrc in the gem5 user account -# This will run the script after the user automatically logs in -echo -e "\nif [ -z \"\$AFTER_BOOT_EXECUTED\" ]; then\n export AFTER_BOOT_EXECUTED=1\n /home/gem5/after_boot.sh\nfi\n" >> /home/gem5/.bashrc - -# Remove the motd -rm /etc/update-motd.d/* - -# Build and install the gem5-bridge (m5) binary, library, and headers -echo "Building and installing gem5-bridge (m5) and libm5" - -# Just get the files we need -git clone https://github.com/gem5/gem5.git --depth=1 --filter=blob:none --no-checkout --sparse --single-branch --branch=stable -pushd gem5 -# Checkout just the files we need -git sparse-checkout add util/m5 -git sparse-checkout add include -git checkout -# Install the headers globally so that other benchmarks can use them -cp -r include/gem5 /usr/local/include/\ - -# Build the library and binary -pushd util/m5 -scons build/arm64/out/m5 -cp build/arm64/out/m5 /usr/local/bin/ -cp build/arm64/out/libm5.a /usr/local/lib/ -popd -popd - -# rename the m5 binary to gem5-bridge -mv /usr/local/bin/m5 /usr/local/bin/gem5-bridge -# Set the setuid bit on the m5 binary -chmod 4755 /usr/local/bin/gem5-bridge -chmod u+s /usr/local/bin/gem5-bridge - -#create a symbolic link to the gem5 binary for backward compatibility -ln -s /usr/local/bin/gem5-bridge /usr/local/bin/m5 - -# delete the git repo for gem5 -rm -rf gem5 -echo "Done building and installing gem5-bridge (m5) and libm5" - -# You can extend this script to install your own packages here. - -# Disable network by default -echo "Disabling network by default" -echo "See README.md for instructions on how to enable network" -if [ -f /etc/netplan/50-cloud-init.yaml ]; then - mv /etc/netplan/50-cloud-init.yaml /etc/netplan/50-cloud-init.yaml.bak -elif [ -f /etc/netplan/00-installer-config.yaml ]; then - mv /etc/netplan/00-installer-config.yaml /etc/netplan/00-installer-config.yaml.bak - netplan apply -fi - -echo "Post Installation Done" diff --git a/src/hack-back/README.md b/src/deprecated/hack-back/README.md similarity index 100% rename from src/hack-back/README.md rename to src/deprecated/hack-back/README.md diff --git a/src/hack-back/disk-image/build.sh b/src/deprecated/hack-back/disk-image/build.sh similarity index 100% rename from src/hack-back/disk-image/build.sh rename to src/deprecated/hack-back/disk-image/build.sh diff --git a/src/hack-back/disk-image/hack-back/hack-back.json b/src/deprecated/hack-back/disk-image/hack-back/hack-back.json similarity index 100% rename from src/hack-back/disk-image/hack-back/hack-back.json rename to src/deprecated/hack-back/disk-image/hack-back/hack-back.json diff --git a/src/hack-back/disk-image/hack-back/hack_back_ckpt.rcS b/src/deprecated/hack-back/disk-image/hack-back/hack_back_ckpt.rcS similarity index 100% rename from src/hack-back/disk-image/hack-back/hack_back_ckpt.rcS rename to src/deprecated/hack-back/disk-image/hack-back/hack_back_ckpt.rcS diff --git a/src/hack-back/disk-image/hack-back/post-installation.sh b/src/deprecated/hack-back/disk-image/hack-back/post-installation.sh similarity index 100% rename from src/hack-back/disk-image/hack-back/post-installation.sh rename to src/deprecated/hack-back/disk-image/hack-back/post-installation.sh diff --git a/src/hack-back/disk-image/shared/preseed.cfg b/src/deprecated/hack-back/disk-image/shared/preseed.cfg similarity index 100% rename from src/hack-back/disk-image/shared/preseed.cfg rename to src/deprecated/hack-back/disk-image/shared/preseed.cfg diff --git a/src/hack-back/disk-image/shared/serial-getty@.service b/src/deprecated/hack-back/disk-image/shared/serial-getty@.service similarity index 100% rename from src/hack-back/disk-image/shared/serial-getty@.service rename to src/deprecated/hack-back/disk-image/shared/serial-getty@.service diff --git a/src/parsec/README.md b/src/deprecated/parsec/README.md similarity index 100% rename from src/parsec/README.md rename to src/deprecated/parsec/README.md diff --git a/src/parsec/disk-image/build.sh b/src/deprecated/parsec/disk-image/build.sh similarity index 100% rename from src/parsec/disk-image/build.sh rename to src/deprecated/parsec/disk-image/build.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/.parsec_uniquefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/.parsec_uniquefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/.parsec_uniquefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/.parsec_uniquefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/CHANGELOG b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/CHANGELOG similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/CHANGELOG rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/CHANGELOG diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/CONTRIBUTORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/CONTRIBUTORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/CONTRIBUTORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/CONTRIBUTORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/FAQ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/FAQ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/FAQ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/FAQ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/README.adoc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/README.adoc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/README.adoc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/README.adoc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfadd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfadd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfadd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfadd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfdel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfdel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfdel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/bldconfdel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/bin/install b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/install similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/bin/install rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/install diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/bin/parsecmgmt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/parsecmgmt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/bin/parsecmgmt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/bin/parsecmgmt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/bienia11parsec.bibconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/bienia11parsec.bibconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/bienia11parsec.bibconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/bienia11parsec.bibconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/woo95splash.bibconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/woo95splash.bibconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/woo95splash.bibconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/bibliography/woo95splash.bibconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/darwin.sysconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/darwin.sysconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/darwin.sysconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/darwin.sysconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/graphite.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/graphite.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/graphite.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/graphite.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/linux.sysconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/linux.sysconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/linux.sysconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/linux.sysconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.blackscholes.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.blackscholes.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.blackscholes.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.blackscholes.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.bodytrack.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.bodytrack.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.bodytrack.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.bodytrack.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.canneal.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.canneal.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.canneal.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.canneal.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.cmake.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.cmake.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.cmake.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.cmake.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.dedup.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.dedup.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.dedup.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.dedup.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.facesim.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.facesim.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.facesim.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.facesim.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ferret.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ferret.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ferret.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ferret.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.fluidanimate.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.fluidanimate.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.fluidanimate.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.fluidanimate.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.freqmine.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.freqmine.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.freqmine.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.freqmine.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.glib.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.glib.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.glib.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.glib.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.gsl.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.gsl.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.gsl.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.gsl.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.hooks.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.hooks.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.hooks.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.hooks.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libjpeg.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libjpeg.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libjpeg.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libjpeg.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libtool.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libtool.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libtool.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libtool.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libxml2.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libxml2.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libxml2.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.libxml2.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.mesa.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.mesa.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.mesa.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.mesa.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netdedup.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netdedup.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netdedup.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netdedup.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netferret.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netferret.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netferret.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netferret.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netstreamcluster.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netstreamcluster.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netstreamcluster.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.netstreamcluster.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.parmacs.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.parmacs.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.parmacs.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.parmacs.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.raytrace.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.raytrace.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.raytrace.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.raytrace.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ssl.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ssl.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ssl.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.ssl.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.streamcluster.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.streamcluster.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.streamcluster.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.streamcluster.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.swaptions.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.swaptions.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.swaptions.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.swaptions.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.tbblib.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.tbblib.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.tbblib.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.tbblib.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.uptcpip.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.uptcpip.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.uptcpip.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.uptcpip.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.vips.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.vips.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.vips.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.vips.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.x264.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.x264.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.x264.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.x264.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.yasm.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.yasm.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.yasm.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.yasm.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.zlib.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.zlib.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.zlib.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/parsec.zlib.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.barnes.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.barnes.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.barnes.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.barnes.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.cholesky.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.cholesky.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.cholesky.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.cholesky.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fft.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fft.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fft.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fft.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fmm.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fmm.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fmm.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.fmm.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_cb.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_cb.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_cb.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_cb.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_ncb.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_ncb.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_ncb.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.lu_ncb.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_cp.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_cp.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_cp.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_cp.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_ncp.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_ncp.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_ncp.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.ocean_ncp.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radiosity.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radiosity.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radiosity.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radiosity.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radix.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radix.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radix.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.radix.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.raytrace.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.raytrace.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.raytrace.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.raytrace.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.volrend.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.volrend.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.volrend.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.volrend.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_nsquared.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_nsquared.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_nsquared.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_nsquared.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_spatial.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_spatial.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_spatial.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2.water_spatial.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.barnes.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.barnes.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.barnes.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.barnes.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.cholesky.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.cholesky.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.cholesky.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.cholesky.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fft.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fft.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fft.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fft.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fmm.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fmm.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fmm.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.fmm.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_cb.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_cb.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_cb.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_cb.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_ncb.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_ncb.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_ncb.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.lu_ncb.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_cp.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_cp.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_cp.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_cp.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_ncp.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_ncp.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_ncp.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.ocean_ncp.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radiosity.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radiosity.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radiosity.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radiosity.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radix.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radix.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radix.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.radix.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.raytrace.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.raytrace.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.raytrace.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.raytrace.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.volrend.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.volrend.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.volrend.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.volrend.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_nsquared.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_nsquared.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_nsquared.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_nsquared.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_spatial.pkgconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_spatial.pkgconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_spatial.pkgconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/packages/splash2x.water_spatial.pkgconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/solaris.sysconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/solaris.sysconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/solaris.sysconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/solaris.sysconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/tile-cc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/tile-cc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/config/tile-cc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/config/tile-cc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/env.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/env.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/env.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/env.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/README.SPLASH2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/README.SPLASH2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/README.SPLASH2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/README.SPLASH2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/SPLASH2.POSTING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/SPLASH2.POSTING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/SPLASH2.POSTING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/SPLASH2.POSTING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/README.barnes b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/README.barnes similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/README.barnes rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/README.barnes diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code_io.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code_io.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code_io.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/code_io.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/defs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/defs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/defs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/defs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/getparam.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/getparam.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/getparam.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/getparam.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/grav.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/grav.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/grav.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/grav.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/load.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/load.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/load.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/load.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/stdinc.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/stdinc.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/stdinc.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/stdinc.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/util.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/util.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/util.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/util.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/vectmath.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/vectmath.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/vectmath.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/src/vectmath.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/barnes/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/README.fmm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/README.fmm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/README.fmm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/README.fmm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/box.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/construct_grid.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/correct.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/correct.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/correct.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/correct.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/cost_zones.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.c.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.c.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.c.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/defs.c.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/fmm.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/fmm.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/fmm.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/fmm.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/interactions.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/memory.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/particle.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/partition_grid.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/times b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/times similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/times rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/src/times diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/fmm/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/README.ocean b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/README.ocean similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/README.ocean rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/README.ocean diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/correct.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/correct.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/correct.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/correct.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/decs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/decs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/decs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/decs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/jacobcalc2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/laplacalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/laplacalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/laplacalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/laplacalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/linkup.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/linkup.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/linkup.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/linkup.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/multi.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/multi.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/multi.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/multi.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave1.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave1.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave1.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave1.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/slave2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/subblock.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/subblock.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/subblock.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/src/subblock.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_cp/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/.C..e b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/.C..e similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/.C..e rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/.C..e diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/README.ocean b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/README.ocean similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/README.ocean rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/README.ocean diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/correct.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/correct.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/correct.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/correct.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/decs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/decs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/decs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/decs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/jacobcalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/jacobcalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/jacobcalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/jacobcalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/laplacalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/laplacalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/laplacalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/laplacalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/multi.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/multi.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/multi.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/multi.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave1.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave1.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave1.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave1.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/src/slave2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/ocean_ncp/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/README.radiosity b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/README.radiosity similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/README.radiosity rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/README.radiosity diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/display.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/display.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/display.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/display.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/elemman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/elemman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/elemman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/elemman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibdumb/glib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/glibps.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/glibps.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/glibps.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/glibps.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/pslib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/pslib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/pslib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/glibps/pslib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/model.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/model.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/model.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/model.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/modelman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/modelman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/modelman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/modelman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/parallel.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/parallel.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/parallel.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/parallel.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patch.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patch.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patch.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patch.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patchman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patchman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patchman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/patchman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_tools.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_tools.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_tools.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/rad_tools.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/radiosity.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/radiosity.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/radiosity.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/radiosity.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/room_model.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/room_model.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/room_model.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/room_model.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/smallobj.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/smallobj.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/smallobj.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/smallobj.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/task.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/task.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/task.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/task.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/taskman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/taskman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/taskman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/taskman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/visible.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/visible.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/visible.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/src/visible.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/radiosity/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/README.raytrace b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/README.raytrace similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/README.raytrace rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/README.raytrace diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/bbox.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/bbox.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/bbox.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/bbox.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/cr.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/cr.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/cr.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/cr.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/env.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/env.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/env.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/env.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/fbuf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/fbuf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/fbuf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/fbuf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/geo.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/geo.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/geo.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/geo.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/huprn.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/huprn.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/huprn.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/huprn.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/husetup.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/husetup.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/husetup.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/husetup.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/hutv.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/hutv.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/hutv.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/hutv.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/isect.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/isect.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/isect.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/isect.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/matrix.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/matrix.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/matrix.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/matrix.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/memory.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/memory.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/memory.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/memory.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/poly.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/poly.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/poly.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/poly.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/raystack.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/raystack.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/raystack.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/raystack.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/rltotiff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/rltotiff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/rltotiff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/rltotiff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rltotiff/tiff_rgba_io.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rt.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rt.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rt.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/rt.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/shade.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/shade.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/shade.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/shade.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/sph.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/sph.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/sph.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/sph.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/trace.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/trace.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/trace.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/trace.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/tri.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/tri.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/tri.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/tri.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/workpool.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/workpool.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/workpool.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/src/workpool.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/raytrace/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/README.volrend b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/README.volrend similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/README.volrend rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/README.volrend diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/adaptive.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/adaptive.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/adaptive.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/adaptive.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/address.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/address.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/address.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/address.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/anl.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/anl.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/anl.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/anl.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/const.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/const.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/const.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/const.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/file.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/file.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/file.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/file.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/global.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/global.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/global.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/global.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/incl.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/incl.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/incl.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/incl.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.DEC b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.DEC similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.DEC rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.DEC diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.aix b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.aix similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.aix rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.aix diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.apollo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.apollo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.apollo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.apollo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.hpux b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.hpux similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.hpux rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.hpux diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.mips b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.mips similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.mips rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.mips diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.next b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.next similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.next rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.next diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sgi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sgi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sgi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sgi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sun b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sun similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sun rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.sun diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.tahoe b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.tahoe similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.tahoe rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.tahoe diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.vax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.vax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.vax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/Makefile.vax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/machdep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/machdep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/machdep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/machdep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkg3states.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkg3states.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkg3states.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkg3states.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkspans.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkspans.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkspans.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/mkspans.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/prototypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/prototypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/prototypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/prototypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/t4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/t4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/t4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/t4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_aux.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_aux.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_aux.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_aux.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_ccittrle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_ccittrle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_ccittrle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_ccittrle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_close.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_close.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_close.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_close.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_compress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirread.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirread.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirread.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirread.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirwrite.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirwrite.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirwrite.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dirwrite.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dumpmode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dumpmode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dumpmode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_dumpmode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_fax4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_flush.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_flush.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_flush.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_flush.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_getimage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_getimage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_getimage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_getimage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_jpeg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_jpeg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_jpeg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_jpeg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_lzw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_lzw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_lzw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_lzw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_machdep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_machdep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_machdep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_machdep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_next.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_next.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_next.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_next.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_open.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_open.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_open.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_open.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_packbits.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_packbits.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_packbits.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_packbits.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_read.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_read.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_read.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_read.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_strip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_strip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_strip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_strip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_swab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_swab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_swab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_swab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_thunder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_thunder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_thunder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_thunder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_tile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_tile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_tile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_tile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_version.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_version.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_version.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_version.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_warning.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_warning.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_warning.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_warning.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_write.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_write.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_write.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tif_write.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiff.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiff.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiff.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiff.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffcompat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffcompat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffcompat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffcompat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffioP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffioP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffioP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/libtiff/tiffioP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/macros.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/macros.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/macros.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/macros.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/map.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/map.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/map.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/map.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/my_types.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/my_types.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/my_types.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/my_types.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/normal.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/normal.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/normal.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/normal.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/octree.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/octree.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/octree.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/octree.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/opacity.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/opacity.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/opacity.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/opacity.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/option.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/option.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/option.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/option.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/raytrace.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/raytrace.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/raytrace.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/raytrace.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/render.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/render.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/render.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/render.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/user_options.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/user_options.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/user_options.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/user_options.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/view.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/view.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/view.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/view.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/voxel.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/voxel.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/voxel.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/src/voxel.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/volrend/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/README.water-nsquared b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/README.water-nsquared similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/README.water-nsquared rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/README.water-nsquared diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/bndry.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/bndry.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/bndry.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/bndry.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnstnt.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnstnt.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnstnt.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cnstnt.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cshift.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cshift.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cshift.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/cshift.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/fileio.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/fileio.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/fileio.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/fileio.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/frcnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/frcnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/frcnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/frcnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/global.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/global.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/global.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/global.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/initia.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/initia.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/initia.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/initia.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/interf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/interf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/interf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/interf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/intraf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/intraf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/intraf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/intraf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/kineti.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/kineti.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/kineti.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/kineti.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mddata.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mddata.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mddata.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mddata.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdmain.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdmain.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdmain.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdmain.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdvar.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdvar.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdvar.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/mdvar.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/parameters.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/parameters.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/parameters.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/parameters.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/poteng.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/poteng.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/poteng.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/poteng.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/predcor.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/predcor.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/predcor.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/predcor.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/randno.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/randno.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/randno.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/randno.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/random.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/random.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/random.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/random.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/split.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/split.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/split.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/split.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/syscons.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/syscons.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/syscons.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/syscons.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/water.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/wwpot.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/wwpot.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/wwpot.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/src/wwpot.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_nsquared/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/README.water-spatial b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/README.water-spatial similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/README.water-spatial rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/README.water-spatial diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/bndry.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/bndry.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/bndry.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/bndry.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnstnt.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnstnt.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnstnt.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cnstnt.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cshift.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cshift.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cshift.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/cshift.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/fileio.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/fileio.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/fileio.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/fileio.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/frcnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/frcnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/frcnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/frcnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/global.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/global.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/global.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/global.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/initia.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/initia.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/initia.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/initia.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/interf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/interf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/interf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/interf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/intraf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/intraf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/intraf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/intraf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/kineti.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/kineti.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/kineti.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/kineti.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mddata.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mddata.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mddata.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mddata.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdmain.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdmain.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdmain.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdmain.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdvar.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdvar.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdvar.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/mdvar.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/parameters.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/parameters.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/parameters.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/parameters.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/poteng.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/poteng.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/poteng.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/poteng.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/predcor.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/predcor.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/predcor.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/predcor.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/randno.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/randno.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/randno.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/randno.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/random.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/random.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/random.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/random.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/split.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/split.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/split.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/split.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/syscons.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/syscons.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/syscons.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/syscons.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/water.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/wwpot.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/wwpot.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/wwpot.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/src/wwpot.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/apps/water_spatial/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/README.cholesky b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/README.cholesky similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/README.cholesky rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/README.cholesky diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/amal.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/amal.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/amal.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/amal.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/assign.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/assign.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/assign.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/assign.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bfac.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bfac.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bfac.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bfac.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bksolve.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bksolve.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bksolve.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/bksolve.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/block2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/block2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/block2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/block2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/fo.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/fo.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/fo.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/fo.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/malloc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/malloc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/malloc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/malloc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/matrix.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/matrix.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/matrix.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/matrix.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/mf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/mf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/mf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/mf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/numLL.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/numLL.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/numLL.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/numLL.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/parts.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/parts.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/parts.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/parts.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/seg.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/seg.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/seg.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/seg.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/solve.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/solve.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/solve.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/solve.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/tree.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/tree.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/tree.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/tree.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/util.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/util.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/util.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/src/util.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/cholesky/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/README.fft b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/README.fft similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/README.fft rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/README.fft diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/fft.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/fft.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/fft.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/fft.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/fft/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/README.lu b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/README.lu similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/README.lu rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/README.lu diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/lu.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/lu.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/lu.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/lu.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_cb/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/README.lu b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/README.lu similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/README.lu rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/README.lu diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/lu.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/lu.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/lu.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/lu.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/lu_ncb/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/README.radix b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/README.radix similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/README.radix rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/README.radix diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/radix.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/radix.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/radix.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/radix.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/kernels/radix/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null.pthread b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null.pthread similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null.pthread rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2/null_macros/c.m4.null.pthread diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/README.barnes b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/README.barnes similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/README.barnes rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/README.barnes diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/code_io.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/defs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/defs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/defs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/defs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/getparam.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/grav.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/load.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/stdinc.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/stdinc.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/stdinc.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/stdinc.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/util.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/vectmath.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/vectmath.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/vectmath.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/src/vectmath.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/barnes/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/README.fmm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/README.fmm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/README.fmm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/README.fmm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/box.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/construct_grid.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/correct.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/correct.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/correct.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/correct.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/cost_zones.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/defs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/fmm.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/fmm.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/fmm.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/fmm.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/interactions.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/memory.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/particle.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/partition_grid.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/times b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/times similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/times rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/src/times diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/fmm/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/README.ocean b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/README.ocean similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/README.ocean rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/README.ocean diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/correct.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/correct.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/correct.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/correct.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/decs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/decs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/decs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/decs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/jacobcalc2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/laplacalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/laplacalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/laplacalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/laplacalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/linkup.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/linkup.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/linkup.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/linkup.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/multi.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/multi.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/multi.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/multi.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave1.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave1.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave1.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave1.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/slave2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/subblock.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/subblock.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/subblock.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/src/subblock.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_cp/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/README.ocean b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/README.ocean similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/README.ocean rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/README.ocean diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/correct.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/correct.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/correct.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/correct.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/decs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/decs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/decs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/decs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/jacobcalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/jacobcalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/jacobcalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/jacobcalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/laplacalc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/laplacalc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/laplacalc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/laplacalc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/multi.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/multi.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/multi.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/multi.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave1.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave1.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave1.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave1.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/src/slave2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/ocean_ncp/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/README.radiosity b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/README.radiosity similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/README.radiosity rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/README.radiosity diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/display.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/display.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/display.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/display.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/elemman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/elemman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/elemman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/elemman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibdumb/glib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/glibps.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/glibps.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/glibps.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/glibps.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/pslib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/pslib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/pslib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/glibps/pslib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/model.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/model.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/model.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/model.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/modelman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/modelman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/modelman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/modelman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/parallel.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/parallel.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/parallel.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/parallel.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patch.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patch.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patch.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patch.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patchman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patchman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patchman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/patchman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_tools.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_tools.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_tools.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/rad_tools.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/radiosity.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/radiosity.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/radiosity.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/radiosity.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/room_model.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/room_model.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/room_model.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/room_model.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/smallobj.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/smallobj.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/smallobj.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/smallobj.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/structs.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/structs.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/structs.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/structs.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/task.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/task.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/task.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/task.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/taskman.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/taskman.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/taskman.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/taskman.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/visible.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/visible.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/visible.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/src/visible.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/radiosity/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/README.raytrace b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/README.raytrace similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/README.raytrace rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/README.raytrace diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/bbox.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/bbox.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/bbox.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/bbox.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/cr.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/cr.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/cr.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/cr.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/env.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/env.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/env.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/env.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/fbuf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/fbuf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/fbuf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/fbuf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/geo.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/geo.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/geo.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/geo.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/huprn.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/huprn.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/huprn.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/huprn.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/husetup.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/husetup.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/husetup.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/husetup.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/hutv.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/hutv.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/hutv.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/hutv.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/isect.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/isect.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/isect.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/isect.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/matrix.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/matrix.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/matrix.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/matrix.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/memory.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/memory.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/memory.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/memory.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/poly.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/poly.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/poly.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/poly.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/raystack.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/raystack.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/raystack.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/raystack.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_back.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_back.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_back.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_back.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_pthread_i386.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_pthread_i386.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_pthread_i386.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/rt_pthread_i386.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/shade.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/shade.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/shade.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/shade.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/sph.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/sph.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/sph.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/sph.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/trace.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/trace.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/trace.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/trace.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/tri.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/tri.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/tri.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/tri.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/workpool.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/workpool.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/workpool.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/src/workpool.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/raytrace/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/README.volrend b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/README.volrend similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/README.volrend rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/README.volrend diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/adaptive.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/adaptive.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/adaptive.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/adaptive.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/address.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/address.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/address.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/address.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/anl.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/anl.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/anl.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/anl.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/const.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/const.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/const.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/const.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/file.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/file.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/file.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/file.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/global.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/global.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/global.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/global.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/incl.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/incl.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/incl.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/incl.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.DEC b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.DEC similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.DEC rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.DEC diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.aix b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.aix similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.aix rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.aix diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.apollo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.apollo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.apollo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.apollo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.hpux b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.hpux similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.hpux rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.hpux diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.mips b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.mips similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.mips rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.mips diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.next b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.next similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.next rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.next diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sgi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sgi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sgi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sgi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sun b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sun similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sun rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.sun diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.tahoe b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.tahoe similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.tahoe rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.tahoe diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.vax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.vax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.vax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/Makefile.vax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/machdep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/machdep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/machdep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/machdep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkg3states.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkg3states.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkg3states.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkg3states.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkspans.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkspans.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkspans.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/mkspans.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/prototypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/prototypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/prototypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/prototypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/t4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/t4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/t4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/t4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_aux.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_aux.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_aux.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_aux.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_ccittrle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_ccittrle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_ccittrle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_ccittrle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_close.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_close.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_close.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_close.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_compress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirread.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirread.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirread.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirread.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirwrite.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirwrite.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirwrite.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dirwrite.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dumpmode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dumpmode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dumpmode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_dumpmode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_fax4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_flush.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_flush.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_flush.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_flush.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_getimage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_getimage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_getimage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_getimage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_jpeg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_jpeg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_jpeg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_jpeg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_lzw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_lzw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_lzw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_lzw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_machdep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_machdep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_machdep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_machdep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_next.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_next.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_next.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_next.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_open.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_open.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_open.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_open.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_packbits.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_packbits.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_packbits.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_packbits.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_read.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_read.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_read.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_read.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_strip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_strip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_strip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_strip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_swab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_swab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_swab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_swab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_thunder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_thunder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_thunder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_thunder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_tile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_tile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_tile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_tile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_version.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_version.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_version.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_version.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_warning.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_warning.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_warning.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_warning.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_write.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_write.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_write.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tif_write.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiff.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiff.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiff.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiff.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffcompat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffcompat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffcompat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffcompat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffioP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffioP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffioP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/libtiff/tiffioP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/macros.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/macros.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/macros.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/macros.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/main.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/main.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/main.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/main.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/map.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/map.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/map.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/map.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/my_types.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/my_types.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/my_types.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/my_types.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/normal.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/normal.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/normal.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/normal.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/octree.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/octree.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/octree.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/octree.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/opacity.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/opacity.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/opacity.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/opacity.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/option.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/option.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/option.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/option.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/raytrace.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/raytrace.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/raytrace.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/raytrace.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/render.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/render.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/render.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/render.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/user_options.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/user_options.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/user_options.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/user_options.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/view.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/view.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/view.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/src/view.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/volrend/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/README.water-nsquared b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/README.water-nsquared similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/README.water-nsquared rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/README.water-nsquared diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/bndry.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/bndry.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/bndry.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/bndry.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnstnt.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnstnt.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnstnt.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cnstnt.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cshift.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cshift.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cshift.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/cshift.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/fileio.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/fileio.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/fileio.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/fileio.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/frcnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/frcnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/frcnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/frcnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/global.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/global.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/global.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/global.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/initia.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/initia.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/initia.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/initia.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/interf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/interf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/interf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/interf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/intraf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/intraf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/intraf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/intraf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/kineti.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/kineti.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/kineti.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/kineti.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mddata.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mddata.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mddata.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mddata.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdmain.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdmain.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdmain.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdmain.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdvar.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdvar.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdvar.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/mdvar.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/parameters.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/parameters.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/parameters.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/parameters.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/poteng.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/poteng.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/poteng.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/poteng.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/predcor.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/predcor.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/predcor.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/predcor.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/randno.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/randno.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/randno.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/randno.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/split.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/split.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/split.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/split.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/syscons.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/syscons.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/syscons.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/syscons.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/water.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/wwpot.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/wwpot.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/wwpot.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/src/wwpot.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_nsquared/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/README.water-spatial b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/README.water-spatial similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/README.water-spatial rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/README.water-spatial diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/bndry.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/bndry.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/bndry.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/bndry.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnstnt.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnstnt.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnstnt.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cnstnt.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cshift.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cshift.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cshift.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/cshift.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/fileio.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/fileio.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/fileio.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/fileio.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/frcnst.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/frcnst.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/frcnst.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/frcnst.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/global.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/global.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/global.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/global.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/initia.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/initia.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/initia.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/initia.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/interf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/interf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/interf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/interf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/intraf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/intraf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/intraf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/intraf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/kineti.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/kineti.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/kineti.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/kineti.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mddata.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mddata.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mddata.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mddata.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdmain.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdmain.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdmain.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdmain.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdvar.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdvar.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdvar.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/mdvar.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/parameters.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/parameters.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/parameters.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/parameters.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/poteng.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/poteng.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/poteng.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/poteng.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/predcor.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/predcor.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/predcor.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/predcor.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/randno.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/randno.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/randno.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/randno.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/split.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/split.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/split.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/split.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/syscons.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/syscons.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/syscons.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/syscons.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/water.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/wwpot.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/wwpot.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/wwpot.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/src/wwpot.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/apps/water_spatial/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/README.cholesky b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/README.cholesky similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/README.cholesky rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/README.cholesky diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/amal.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/amal.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/amal.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/amal.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/assign.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/assign.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/assign.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/assign.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bfac.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bfac.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bfac.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bfac.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bksolve.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bksolve.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bksolve.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/bksolve.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/block2.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/block2.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/block2.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/block2.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/fo.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/fo.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/fo.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/fo.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/malloc.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/malloc.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/malloc.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/malloc.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/matrix.H b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/matrix.H similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/matrix.H rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/matrix.H diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/mf.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/mf.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/mf.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/mf.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/numLL.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/numLL.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/numLL.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/numLL.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/parts.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/parts.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/parts.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/parts.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/seg.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/seg.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/seg.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/seg.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/solve.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/solve.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/solve.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/solve.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/tree.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/tree.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/tree.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/tree.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/util.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/util.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/util.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/src/util.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/cholesky/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/README.fft b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/README.fft similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/README.fft rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/README.fft diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/fft.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/fft.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/fft.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/fft.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/fft/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/README.lu b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/README.lu similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/README.lu rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/README.lu diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/lu.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/lu.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/lu.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/lu.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_cb/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/README.lu b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/README.lu similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/README.lu rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/README.lu diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/lu.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/lu.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/lu.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/lu.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/lu_ncb/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/README.radix b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/README.radix similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/README.radix rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/README.radix diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/radix.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/radix.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/radix.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/radix.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/ext/splash2x/kernels/radix/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/get-inputs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/get-inputs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/get-inputs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/get-inputs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/install.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/install.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/install.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/install.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfadd.1.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfadd.1.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfadd.1.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfadd.1.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfdel.1.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfdel.1.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfdel.1.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man1/bldconfdel.1.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man1/parsecmgmt.1.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man1/parsecmgmt.1.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man1/parsecmgmt.1.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man1/parsecmgmt.1.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_SIMICS_MAGIC.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_SIMICS_MAGIC.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_SIMICS_MAGIC.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_SIMICS_MAGIC.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_TIMING.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_TIMING.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_TIMING.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/ENABLE_TIMING.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_PREFIX.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_PREFIX.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_PREFIX.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_PREFIX.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_VERSION.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_VERSION.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_VERSION.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/HOOKS_VERSION.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_begin.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_begin.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_begin.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_begin.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_end.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_end.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_end.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_bench_end.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_benchmark.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_benchmark.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_benchmark.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_benchmark.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_begin.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_begin.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_begin.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_begin.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_end.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_end.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_end.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/__parsec_roi_end.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/config.h.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/config.h.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/config.h.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/config.h.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.c.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.c.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.c.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.c.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.h.3.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.h.3.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.h.3.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man3/hooks.h.3.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man5/bldconf.5.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/bldconf.5.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man5/bldconf.5.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/bldconf.5.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man5/pkgconf.5.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/pkgconf.5.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man5/pkgconf.5.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/pkgconf.5.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man5/runconf.5.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/runconf.5.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man5/runconf.5.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/runconf.5.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man5/sysconf.5.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/sysconf.5.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man5/sysconf.5.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man5/sysconf.5.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man7/hooks.7.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man7/hooks.7.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man7/hooks.7.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man7/hooks.7.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/man/man7/parsec.7.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man7/parsec.7.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/man/man7/parsec.7.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/man/man7/parsec.7.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.simd.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/blackscholes.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/c.m4.pthreads b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/c.m4.pthreads similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/c.m4.pthreads rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/c.m4.pthreads diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/inputgen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/inputgen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/inputgen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/inputgen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/optionData.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/optionData.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/optionData.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/src/optionData.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/blackscholes/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/BinaryImage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/BinaryImage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/BinaryImage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/BinaryImage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexColor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexColor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexColor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexColor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDataExchange.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDataExchange.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDataExchange.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDataExchange.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDefs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDefs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDefs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDefs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDraw.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDraw.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDraw.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexDraw.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexFilter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexFilter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexFilter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexFilter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexIO.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageLib.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStatus.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStatus.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStatus.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStatus.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStore.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStore.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStore.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexImageStore.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexLib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexLib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexLib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexLib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexOperators.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexOperators.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexOperators.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexOperators.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexThreshold.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexThreshold.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexThreshold.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexThreshold.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexTransform.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexTransform.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexTransform.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/FlexTransform.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/FlexImageLib/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AnnealingFactor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/AsyncIO.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyGeometry.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/BodyPose.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CameraModel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/CovarianceMatrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/DMatrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/DMatrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/DMatrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/DMatrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageMeasurements.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ImageProjection.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterOMP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterOMP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterOMP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterOMP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterPthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterPthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterPthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterPthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterTBB.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterTBB.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterTBB.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/ParticleFilterTBB.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/RandomGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/SmallVectors.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/SmallVectors.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/SmallVectors.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/SmallVectors.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TBBtypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TBBtypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TBBtypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TBBtypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingBenchmark.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelOMP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelPthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/TrackingModelTBB.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Vector3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Vector3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Vector3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/Vector3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/WorkPoolPthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/WorkPoolPthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/WorkPoolPthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/WorkPoolPthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/system.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/system.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/system.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/system.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Barrier.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Condition.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/LockTypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/LockTypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/LockTypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/LockTypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/RWLock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/SynchQueue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/SynchQueue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/SynchQueue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/SynchQueue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/Thread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/ThreadGroup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/TicketDispenser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/TicketDispenser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/TicketDispenser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/TicketDispenser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/WorkerGroup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/amd64/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/amd64/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/amd64/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/amd64/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/i386/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/i386/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/i386/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/i386/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/ia64/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/ia64/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/ia64/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/ia64/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/cpufunc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/cpufunc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/cpufunc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/powerpc/cpufunc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/asi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/asi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/asi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/asi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/cpufunc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/cpufunc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/cpufunc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/TrackingBenchmark/threads/atomic/sparc/cpufunc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/depcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/depcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/depcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/depcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/src/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/bodytrack/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/README_FIRST.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/README_FIRST.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/README_FIRST.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/README_FIRST.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ACTIVATION_CONTROL_SET.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ACTIVATION_CONTROL_SET.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ACTIVATION_CONTROL_SET.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ACTIVATION_CONTROL_SET.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ATTACHMENT_FRAME_CONTROL_SET.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ATTACHMENT_FRAME_CONTROL_SET.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ATTACHMENT_FRAME_CONTROL_SET.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/ATTACHMENT_FRAME_CONTROL_SET.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_PARAMETERS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_PARAMETERS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_PARAMETERS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_PARAMETERS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_SET.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_SET.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_SET.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_CONTROL_SET.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_DRIVER.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_EXAMPLE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_EXAMPLE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_EXAMPLE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_EXAMPLE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_LANDMARK_OPTIMIZATION_GOAL.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION_GOAL.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION_GOAL.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION_GOAL.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/FACE_OPTIMIZATION_GOAL.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/GLOBAL_FRAME_CONTROL_SET.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/GLOBAL_FRAME_CONTROL_SET.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/GLOBAL_FRAME_CONTROL_SET.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/GLOBAL_FRAME_CONTROL_SET.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/LANDMARK_PROXIMITY_OPTIMIZATION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_DRIVER.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_DRIVER.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_DRIVER.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_DRIVER.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_EXAMPLE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_EXAMPLE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_EXAMPLE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASISTATICS_EXAMPLE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASI_RIGID_TRANSFORM_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASI_RIGID_TRANSFORM_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASI_RIGID_TRANSFORM_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/QUASI_RIGID_TRANSFORM_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/README_face.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/README_face.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/README_face.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/README_face.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Storytelling/STORYTELLING_EXAMPLE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Storytelling/STORYTELLING_EXAMPLE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Storytelling/STORYTELLING_EXAMPLE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/Storytelling/STORYTELLING_EXAMPLE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Benchmarks/facesim/main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_1D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_1D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_1D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_1D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_RANGE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_RANGE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_RANGE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAYS_RANGE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_PARALLEL_OPERATIONS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_RANGE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_RANGE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_RANGE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/ARRAY_RANGE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAY.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAY.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAY.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAY.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAYS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAYS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAYS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Arrays/LIST_ARRAYS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/BOX_HIERARCHY.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_BODY_LIST_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_PENALTY_FORCES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_PENALTY_FORCES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_PENALTY_FORCES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/COLLISION_PENALTY_FORCES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/PARTICLE_PARTITION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/PARTICLE_PARTITION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/PARTICLE_PARTITION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/PARTICLE_PARTITION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_COLLISION_BODY.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Collisions_And_Interactions/TETRAHEDRON_HIERARCHY.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/CONSTITUTIVE_MODEL_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/CONSTITUTIVE_MODEL_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/CONSTITUTIVE_MODEL_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/CONSTITUTIVE_MODEL_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_CONSTITUTIVE_MODEL_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_CONSTITUTIVE_MODEL_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_CONSTITUTIVE_MODEL_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_CONSTITUTIVE_MODEL_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_FACE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_FACE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_FACE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_FACE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_ISOTROPIC_STRESS_DERIVATIVE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_ISOTROPIC_STRESS_DERIVATIVE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_ISOTROPIC_STRESS_DERIVATIVE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/DIAGONALIZED_ISOTROPIC_STRESS_DERIVATIVE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Constitutive_Models/STRAIN_MEASURE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/DYNAMIC_LIST.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/DYNAMIC_LIST.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/DYNAMIC_LIST.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/DYNAMIC_LIST.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/HASHTABLE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/PAIR.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/PAIR.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/PAIR.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/PAIR.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/QUEUE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/QUEUE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/QUEUE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/QUEUE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE_NODE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE_NODE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE_NODE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/SPLAY_TREE_NODE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/STACK.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/STACK.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/STACK.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/STACK.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/UNION_FIND.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/UNION_FIND.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/UNION_FIND.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Data_Structures/UNION_FIND.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_COLLISIONS_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_LIST_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_LIST_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_LIST_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Deformable_Objects/DEFORMABLE_OBJECT_LIST_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/BODY_FORCES_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_FINITE_VOLUME_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_SEMI_IMPLICIT_ELEMENT_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_SEMI_IMPLICIT_ELEMENT_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_SEMI_IMPLICIT_ELEMENT_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/DIAGONALIZED_SEMI_IMPLICIT_ELEMENT_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/EXTERNAL_FORCES_AND_VELOCITIES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/EXTERNAL_FORCES_AND_VELOCITIES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/EXTERNAL_FORCES_AND_VELOCITIES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/EXTERNAL_FORCES_AND_VELOCITIES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/SOLIDS_FORCES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/SOLIDS_FORCES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/SOLIDS_FORCES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Forces_And_Torques/SOLIDS_FORCES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Fracture/EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/BOX_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_OBJECT.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/EMBEDDED_TETRAHEDRALIZED_VOLUME.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/IMPLICIT_SURFACE_LIST.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/LEVELSET_IMPLICIT_SURFACE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/LEVELSET_IMPLICIT_SURFACE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/LEVELSET_IMPLICIT_SURFACE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/LEVELSET_IMPLICIT_SURFACE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/ORIENTED_BOX_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/PLANE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/POLYGON.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/POLYGON.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/POLYGON.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/POLYGON.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/RAY_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENTED_CURVE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/SEGMENT_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRALIZED_VOLUME_LIST.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TETRAHEDRON.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGLE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_OBJECT.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Geometry/TRIANGULATED_SURFACE_LIST.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_2d.jpg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_2d.jpg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_2d.jpg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_2d.jpg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_3d.jpg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_3d.jpg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_3d.jpg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/Documentation/red_green_grid_ordering_3d.jpg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_1D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_1D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_1D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_1D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/GRID_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/SEGMENT_MESH.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TETRAHEDRON_MESH.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Grids/TRIANGLE_MESH.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/INTERPOLATION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/INTERPOLATION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/INTERPOLATION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/INTERPOLATION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/LINEAR_INTERPOLATION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/LINEAR_INTERPOLATION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/LINEAR_INTERPOLATION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Interpolation/LINEAR_INTERPOLATION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Level_Sets/LEVELSET_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.PhysBAM b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.PhysBAM similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.PhysBAM rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.PhysBAM diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.common b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.common similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.common rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Makefile.common diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/abs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/abs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/abs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/abs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/clamp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/clamp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/clamp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/clamp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/constants.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/constants.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/constants.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/constants.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange_sort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange_sort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange_sort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/exchange_sort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/hash_function.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/hash_function.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/hash_function.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/hash_function.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/max.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/max.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/max.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/max.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxabs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxabs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxabs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxabs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxmag.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxmag.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxmag.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/maxmag.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/min.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/min.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/min.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/min.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/minmag.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/minmag.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/minmag.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/minmag.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sign.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sign.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sign.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sign.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sqr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sqr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sqr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Math_Tools/sqr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_2X2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_2X2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_2X2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_2X2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_3X3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_3X3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_3X3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/DIAGONAL_MATRIX_3X3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/FRAME.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/FRAME.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/FRAME.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/FRAME.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_2X2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_2X2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_2X2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_2X2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_3X3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_4X4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_4X4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_4X4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_4X4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_MXN.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_MXN.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_MXN.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_MXN.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_NXN.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_NXN.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_NXN.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/MATRIX_NXN.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/QUATERNION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/QUATERNION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/QUATERNION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/QUATERNION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_2X2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_2X2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_2X2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_2X2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/SYMMETRIC_MATRIX_3X3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_2X2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_2X2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_2X2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_2X2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_3X3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_3X3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_3X3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/UPPER_TRIANGULAR_MATRIX_3X3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_1D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_1D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_1D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_1D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_2D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_2D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_2D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_2D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Matrices_And_Vectors/VECTOR_ND_PARALLEL.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION_MAP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION_MAP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION_MAP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_COLLECTION_MAP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_UNTEMPLATIZED.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_UNTEMPLATIZED.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_UNTEMPLATIZED.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_ATTRIBUTE_UNTEMPLATIZED.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_MASS_ATTRIBUTE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_MASS_ATTRIBUTE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_MASS_ATTRIBUTE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_MASS_ATTRIBUTE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_POSITION_ATTRIBUTE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_POSITION_ATTRIBUTE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_POSITION_ATTRIBUTE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_POSITION_ATTRIBUTE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_VELOCITY_ATTRIBUTE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_VELOCITY_ATTRIBUTE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_VELOCITY_ATTRIBUTE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/PARTICLE_VELOCITY_ATTRIBUTE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Particles/SOLIDS_PARTICLE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/FILE_UTILITIES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/READ_WRITE_FUNCTIONS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/READ_WRITE_FUNCTIONS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/READ_WRITE_FUNCTIONS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Read_Write/READ_WRITE_FUNCTIONS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/MASS_PROPERTIES_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_BOUNDING_VOLUMES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_BOUNDING_VOLUMES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_BOUNDING_VOLUMES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_BOUNDING_VOLUMES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISIONS_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISION_MANAGER.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISION_MANAGER.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISION_MANAGER.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_COLLISION_MANAGER.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_EVOLUTION_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_INTERSECTIONS_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_LIST_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SKIP_COLLISION_CHECK.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SKIP_COLLISION_CHECK.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SKIP_COLLISION_CHECK.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SKIP_COLLISION_CHECK.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SPATIAL_PARTITION_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SPATIAL_PARTITION_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SPATIAL_PARTITION_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_SPATIAL_PARTITION_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_STATE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_STATE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_STATE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Rigid_Bodies/RIGID_BODY_STATE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/DEFORMABLE_BODY_PARAMETERS_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_CALLBACKS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_CALLBACKS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_CALLBACKS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/RIGID_BODY_PARAMETERS_CALLBACKS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_CALLBACKS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_CALLBACKS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_CALLBACKS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_EVOLUTION_CALLBACKS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_DRIVER_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_FLUIDS_EXAMPLE_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Solids_And_Fluids/SOLIDS_PARAMETERS_3D.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_ARRAY_LOCK.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_CONDITION.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_CONDITION.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_CONDITION.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_CONDITION.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_DIVISION_PARAMETERS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_LOCK.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_LOCK.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_LOCK.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_LOCK.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_ALAMERE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_ALAMERE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_ALAMERE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_ALAMERE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_SINGLE.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_SINGLE.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_SINGLE.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Thread_Utilities/THREAD_POOL_SINGLE.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/ARG_DATA.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/ARG_DATA.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/ARG_DATA.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/ARG_DATA.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/DEBUG_UTILITIES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_ENTRY.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_SCOPE.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_SCOPE.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_SCOPE.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/LOG_SCOPE.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/PARSE_ARGS.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STATIC_ASSERT.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STATIC_ASSERT.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STATIC_ASSERT.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STATIC_ASSERT.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/STRING_UTILITIES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TIMER.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TYPE_UTILITIES.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TYPE_UTILITIES.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TYPE_UTILITIES.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/Public_Library/Utilities/TYPE_UTILITIES.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/include/taskQ.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/include/taskQ.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/include/taskQ.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/include/taskQ.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/alamere.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/alamere.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/alamere.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/alamere.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistCommon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistCommon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistCommon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistCommon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQDistFixed.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQInternal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQInternal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQInternal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQInternal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQList.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQList.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQList.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/src/TaskQ/lib/taskQList.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/facesim/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-pthreads.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-pthreads.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-pthreads.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-pthreads.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-serial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-serial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-serial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-serial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/ferret-tbb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/mkdb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/mkdb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/mkdb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/mkdb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/benchmark/runbench2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/datatype.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/datatype.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/datatype.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/datatype.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/extend.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/extend.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/extend.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/extend.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/feature.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/feature.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/feature.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/feature.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/ferret.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/ferret.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/ferret.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/ferret.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/index.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/index.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/index.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/index.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/install.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/install.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/install.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/install.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/intro.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/intro.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/intro.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/intro.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/layout.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/layout.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/layout.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/layout.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/library.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/library.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/library.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/library.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/server.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/server.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/server.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/server.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/util.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/util.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/util.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/util.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecdist.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecdist.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecdist.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecdist.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecsetdist.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecsetdist.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecsetdist.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/manual/vecsetdist.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.pdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.pdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.pdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.pdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.pdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.pdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.pdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.pdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.ppt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.ppt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.ppt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/cass_arch.ppt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/depend.mk b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/depend.mk similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/depend.mk rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/depend.mk diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/distfunc.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/distfunc.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/distfunc.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/distfunc.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/index.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/index.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/index.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/index.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/management.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/management.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/management.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/management.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/overview.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/overview.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/overview.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/overview.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/queryplan.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/queryplan.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/queryplan.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/queryplan.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/storage.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/storage.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/storage.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/storage.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep.awk b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep.awk similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep.awk rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/texdep.awk diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/vecset.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/vecset.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/vecset.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/doc/spec/vecset.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/cass_img_extract.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/cass_img_extract.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/cass_img_extract.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/cass_img_extract.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/edge.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/edge.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/edge.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/edge.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/extract.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/extract.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/extract.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/extract.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/image.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/srm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/srm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/srm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/image/srm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/arena.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/arena.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/arena.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/arena.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_array.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_array.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_array.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_array.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bench.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bench.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bench.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bench.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bitmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bitmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bitmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_bitmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_dist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_dist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_dist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_dist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_endian.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_endian.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_endian.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_endian.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_file.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_file.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_file.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_file.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_heap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_heap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_heap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_heap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_matrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_matrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_matrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_matrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_stat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_stat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_stat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_stat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_timer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_timer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_timer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_timer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_topk.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_topk.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_topk.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_topk.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_type.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_type.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_type.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/cass_type.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/dat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/dat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/dat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/dat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/datalog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/datalog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/datalog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/datalog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/hash_table.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/hash_table.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/hash_table.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/hash_table.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/heap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/heap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/heap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/heap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_pickpert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_pickpert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_pickpert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_pickpert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_table.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_table.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_table.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/lsh_table.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/queue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/queue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/queue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/queue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/tpool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/tpool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/tpool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/include/tpool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/arena.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/arena.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/arena.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/arena.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/assign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/assign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/assign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/assign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bench.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bench.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bench.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bench.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_reg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_reg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_reg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cass_reg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/chunk_cnt.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/chunk_cnt.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/chunk_cnt.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/chunk_cnt.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/cuckoo_hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dataset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dataset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dataset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dataset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/emd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/env.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/env.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/env.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/env.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash_table.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash_table.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash_table.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/hash_table.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/heap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/heap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/heap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/heap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/import.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/import.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/import.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/import.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query_batch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query_batch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query_batch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/LSH_query_batch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/local.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/perturb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/recall.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/recall.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/recall.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/lsh/recall.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/map.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/map.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/map.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/map.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/queue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/queue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/queue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/queue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/raw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/raw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/raw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/raw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/stat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/stat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/stat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/stat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/table.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/table.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/table.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/table.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/timer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/timer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/timer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/timer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/topk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/topk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/topk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/topk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tpool.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tpool.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tpool.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/tpool.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/src/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_cfg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_cfg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_cfg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_cfg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_index.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_index.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_index.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_index.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_map.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_map.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_map.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_map.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_table.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_table.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_table.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_table.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vec_dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vec_dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vec_dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vec_dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vecset_dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vecset_dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vecset_dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_add_vecset_dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_describe.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_describe.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_describe.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_describe.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_export.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_export.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_export.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_export.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_import.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_import.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_import.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_import.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/src/tools/cass_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/ferret/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.pthreads b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.pthreads similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.pthreads rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.pthreads diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.serial b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.serial similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.serial rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.serial diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.tbb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.tbb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.tbb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/Makefile.tbb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/cellpool.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluid.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluid.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluid.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluid.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidcmp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidcmp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidcmp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidcmp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/fluidview.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/parsec_barrier.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/pthreads.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/pthreads.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/pthreads.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/pthreads.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/serial.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/serial.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/serial.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/serial.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/tbb.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/tbb.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/tbb.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/src/tbb.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/fluidanimate/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/buffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/data.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_node.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fp_tree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fpmax.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fpmax.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fpmax.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fpmax.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/fsout.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/src/wtime.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/freqmine/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CmdLine.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CmdLine.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CmdLine.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/CmdLine.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/GLTextureFB.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/MemoryFrameBuffer.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/MemoryFrameBuffer.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/MemoryFrameBuffer.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/MemoryFrameBuffer.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/PBOFrameBuffer.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/TiledFrameBuffer.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/TiledFrameBuffer.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/TiledFrameBuffer.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/FrameBuffer/TiledFrameBuffer.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/Init.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/Init.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/Init.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/Init.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/RenderToTexture.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/RenderToTexture.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/RenderToTexture.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/RenderToTexture.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/include/lrt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/include/lrt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/include/lrt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/include/lrt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/render.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/render.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/render.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/render.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/test/api_static_cube/static_cube.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/test/api_static_cube/static_cube.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/test/api_static_cube/static_cube.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/LRT/test/api_static_cube/static_cube.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/Camera.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/Camera.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/Camera.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/Camera.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ImagePPM.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ImagePPM.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ImagePPM.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ImagePPM.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ObjParser.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ObjParser.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ObjParser.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/ObjParser.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/rtview.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/rtview.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/rtview.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/MiniView/rtview.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/ISG.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/rt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/rt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/rt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/API/rt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/BVH.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDims.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/BinnedAllDimsSaveSpace.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Builder.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/OnDemandBuilder.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/BVH/Builder/Sweep.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Grid/Grid.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Grid/Grid.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Grid/Grid.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Grid/Grid.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Mesh/Mesh.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Mesh/Mesh.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Mesh/Mesh.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Mesh/Mesh.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Texture/Texture.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Texture/Texture.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Texture/Texture.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Texture/Texture.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Triangle/Triangle.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Triangle/Triangle.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Triangle/Triangle.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/Triangle/Triangle.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/MapOptions.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTBox.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTBox.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTBox.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTBox.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTData.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTData.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTData.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTData.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTDataAligned.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTDataAligned.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTDataAligned.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTDataAligned.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTEmulatedSSE.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTEmulatedSSE.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTEmulatedSSE.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTEmulatedSSE.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTInclude.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTInclude.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTInclude.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTInclude.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTIntervalArith.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTIntervalArith.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTIntervalArith.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTIntervalArith.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTMatrix.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTMatrix.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTMatrix.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTMatrix.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTRay.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTRay.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTRay.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTRay.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSE.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSE.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSE.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSE.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSEAliases.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSEAliases.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSEAliases.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTSSEAliases.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTShader.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTShader.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTShader.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTShader.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTThread.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVec.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVec.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVec.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVec.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVecBody.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVecBody.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVecBody.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTVecBody.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTcoutRedirect.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTcoutRedirect.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTcoutRedirect.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/RTcoutRedirect.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/Timer.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/Timer.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/Timer.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/Timer.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/alpha/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/alpha/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/alpha/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/alpha/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/amd64/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/amd64/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/amd64/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/amd64/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/i386/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/i386/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/i386/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/i386/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/ia64/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/ia64/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/ia64/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/ia64/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/powerpc/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/powerpc/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/powerpc/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/powerpc/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/asi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/asi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/asi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/asi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/cpufunc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/cpufunc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/cpufunc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/atomic/sparc/cpufunc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig_template.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig_template.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig_template.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/cmake_autoconfig_template.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/non_cmake_config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/non_cmake_config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/non_cmake_config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/common/non_cmake_config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMesh.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMesh.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMesh.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMesh.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshDescriptor.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshDescriptor.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshDescriptor.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshDescriptor.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshInstantiation.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshInstantiation.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshInstantiation.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTMeshInstantiation.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTObjReader.hxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTObjReader.hxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTObjReader.hxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/RTObjReader.hxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestMesh/TestMesh.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/TestOptions.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/test.ini b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/test.ini similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/test.ini rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestOptions/test.ini diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/TestRTVec.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/test_aligned_and_unaligned.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/test_aligned_and_unaligned.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/test_aligned_and_unaligned.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRTVec/test_aligned_and_unaligned.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/TestRays/TestRays.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_newmesh/newmesh.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_newmesh/newmesh.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_newmesh/newmesh.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_newmesh/newmesh.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_vertex_conversion/vertex_conversion.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_vertex_conversion/vertex_conversion.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_vertex_conversion/vertex_conversion.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/RTTL/test/api_vertex_conversion/vertex_conversion.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testglut.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testglut.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testglut.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testglut.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testpbo.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testpbo.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testpbo.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Testing/testpbo.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/GL/glut.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/GL/glut.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/GL/glut.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/GL/glut.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/README-win32.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/README-win32.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/README-win32.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/README-win32.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glext_win.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glext_win.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glext_win.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glext_win.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.dll b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.dll similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.dll rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.dll diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.lib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.lib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.lib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/glut-win32/glut32.lib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/pthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/pthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/pthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/pthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/sched.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/sched.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/sched.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/sched.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/semaphore.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/semaphore.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/semaphore.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/include/semaphore.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.dll b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.dll similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.dll rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.dll diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.lib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.lib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.lib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVC2.lib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.dll b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.dll similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.dll rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.dll diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.lib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.lib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.lib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVCE2.lib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.dll b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.dll similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.dll rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.dll diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.lib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.lib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.lib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/Utils/pthread-win32/lib/pthreadVSE2.lib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/api_layers.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/api_layers.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/api_layers.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/api_layers.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/apinotes.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/apinotes.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/apinotes.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/apinotes.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building_using_and_calling.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building_using_and_calling.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building_using_and_calling.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/building_using_and_calling.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_arrays.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_arrays.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_arrays.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_arrays.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_sharing.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_sharing.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_sharing.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/data_sharing.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/demo_code_snippets/fasttransfers.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/demo_code_snippets/fasttransfers.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/demo_code_snippets/fasttransfers.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/demo_code_snippets/fasttransfers.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/driver_device_app.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/driver_device_app.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/driver_device_app.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/driver_device_app.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/example_new_mesh.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/example_new_mesh.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/example_new_mesh.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/example_new_mesh.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/examples.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/examples.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/examples.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/examples.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/glossary.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/glossary.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/glossary.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/glossary.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/index.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/index.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/index.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/index.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/node_ownership.dox b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/node_ownership.dox similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/node_ownership.dox rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/doc/node_ownership.dox diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/fullmanual.doxyfile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/fullmanual.doxyfile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/fullmanual.doxyfile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/fullmanual.doxyfile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/rtview.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/shortmanual.doxyfile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/shortmanual.doxyfile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/shortmanual.doxyfile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/src/shortmanual.doxyfile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/raytrace/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/CumNormalInv.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/CumNormalInv.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/CumNormalInv.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/CumNormalInv.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Securities.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_SimPath_Forward_Blocking.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_SimPath_Forward_Blocking.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_SimPath_Forward_Blocking.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_SimPath_Forward_Blocking.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Swaption_Blocking.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Swaption_Blocking.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Swaption_Blocking.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_Swaption_Blocking.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_type.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_type.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_type.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/HJM_type.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/MaxFunction.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/MaxFunction.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/MaxFunction.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/MaxFunction.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/RanUnif.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/RanUnif.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/RanUnif.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/RanUnif.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/icdf.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/icdf.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/icdf.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/icdf.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/nr_routines.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/src/resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/swaptions/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/THANKS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/THANKS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/THANKS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/THANKS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/acinclude.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/acinclude.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/acinclude.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/acinclude.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/benchmarkn.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/benchmarkn.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/benchmarkn.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/benchmarkn.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/sample2.v b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/sample2.v similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/sample2.v rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/benchmark/sample2.v diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/bootstrap.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/bootstrap.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/bootstrap.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/bootstrap.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/configure.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/depcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/depcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/depcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/depcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/arch.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/arch.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/arch.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/arch.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/interconvert.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/interconvert.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/interconvert.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/figs/interconvert.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanual.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualch4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualli3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse10.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse10.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse10.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse10.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse11.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse11.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse11.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse11.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse12.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse12.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse12.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse12.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse13.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse13.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse13.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse13.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse14.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse14.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse14.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse14.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse15.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse15.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse15.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse15.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse16.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse16.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse16.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse16.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse17.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse17.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse17.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse17.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse18.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse18.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse18.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse18.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse5.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse5.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse5.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse5.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse6.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse6.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse6.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse6.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse7.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse7.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse7.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse7.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse8.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse8.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse8.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse8.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse9.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse9.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse9.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/html/vipsmanualse9.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/pdf/vipsmanual.pdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/pdf/vipsmanual.pdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/pdf/vipsmanual.pdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/pdf/vipsmanual.pdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsFormat.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsFormat.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsFormat.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsFormat.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsInterpolate.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsInterpolate.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsInterpolate.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsInterpolate.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsThreadState.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsThreadState.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsThreadState.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/VipsThreadState.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/api-index-full.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/api-index-full.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/api-index-full.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/api-index-full.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch01.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch01.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch01.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch01.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch03.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch03.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch03.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch03.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch04.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch04.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch04.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/ch04.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/home.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/home.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/home.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/home.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/index.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/interconvert.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/interconvert.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/interconvert.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/interconvert.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/left.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/left.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/left.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/left.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-VipsArgument.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-VipsArgument.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-VipsArgument.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-VipsArgument.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-arithmetic.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-arithmetic.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-arithmetic.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-arithmetic.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-boolean.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-boolean.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-boolean.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-boolean.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-buf.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-buf.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-buf.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-buf.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-callback.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-callback.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-callback.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-callback.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-check.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-check.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-check.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-check.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-cimg-funcs.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-cimg-funcs.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-cimg-funcs.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-cimg-funcs.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-colour.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-colour.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-colour.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-colour.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-conversion.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-conversion.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-conversion.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-conversion.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-convolution.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-convolution.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-convolution.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-convolution.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-dispatch.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-dispatch.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-dispatch.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-dispatch.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-error.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-error.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-error.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-error.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-freq-filt.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-freq-filt.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-freq-filt.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-freq-filt.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-generate.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-generate.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-generate.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-generate.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-header.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-header.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-header.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-header.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-histograms-lut.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-histograms-lut.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-histograms-lut.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-histograms-lut.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-image.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-image.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-image.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-image.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-inplace.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-inplace.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-inplace.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-inplace.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mask.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mask.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mask.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mask.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-memory.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-memory.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-memory.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-memory.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-meta.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-meta.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-meta.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-meta.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-morphology.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-morphology.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-morphology.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-morphology.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mosaicing.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mosaicing.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mosaicing.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-mosaicing.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-other.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-other.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-other.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-other.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-rect.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-rect.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-rect.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-rect.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-region.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-region.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-region.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-region.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-relational.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-relational.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-relational.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-relational.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-resample.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-resample.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-resample.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-resample.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-semaphore.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-semaphore.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-semaphore.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-semaphore.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-transform.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-transform.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-transform.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-transform.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-type.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-type.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-type.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-type.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-util.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-util.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-util.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-util.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-version.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-version.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-version.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-version.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-video.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-video.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-video.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips-video.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/libvips.devhelp2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/object-tree.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/object-tree.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/object-tree.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/object-tree.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/right.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/right.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/right.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/right.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/style.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/style.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/style.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/style.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/up.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/up.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/up.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/html/up.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.svg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.svg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.svg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/images/interconvert.svg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-docs.sgml.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-overrides.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-overrides.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-overrides.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-overrides.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-sections.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-sections.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-sections.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/reference/libvips-sections.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/applintro.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/applintro.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/applintro.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/applintro.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/cppintro.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/cppintro.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/cppintro.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/cppintro.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.svg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.svg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.svg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/arch.svg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.svg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.svg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.svg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/figs/interconvert.svg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fileformat.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fileformat.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fileformat.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fileformat.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/format.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/format.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/format.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/format.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fred b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fred similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fred rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/fred diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/func.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/func.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/func.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/func.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/html.cfg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/html.cfg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/html.cfg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/html.cfg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/interpolate.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/interpolate.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/interpolate.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/interpolate.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/iosys.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/iosys.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/iosys.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/iosys.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/ipio.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/ipio.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/ipio.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/ipio.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/mydefs.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/mydefs.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/mydefs.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/mydefs.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/object.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/object.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/object.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/object.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/operintro.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/operintro.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/operintro.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/operintro.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/packages.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/packages.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/packages.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/packages.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/pio.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/pio.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/pio.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/pio.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/refintro.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/refintro.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/refintro.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/refintro.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vdisplay.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vdisplay.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vdisplay.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vdisplay.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/verror.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/verror.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/verror.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/verror.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vimage.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vimage.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vimage.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vimage.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4ct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4ct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4ct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4ct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4tc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4tc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4tc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.4tc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.aux b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.aux similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.aux rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.aux diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.dvi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.dvi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.dvi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.dvi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.idv b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.idv similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.idv rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.idv diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lof b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lof similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lof rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lof diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.log b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.log similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.log rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.log diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lot b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lot similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lot rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.lot diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.pdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.pdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.pdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.pdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tmp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tmp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tmp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.tmp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.toc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.toc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.toc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.toc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.xref b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.xref similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.xref rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual.xref diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/arch.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/arch.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/arch.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/arch.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/interconvert.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/interconvert.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/interconvert.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/figs/interconvert.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanual.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualch4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualli3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse10.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse10.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse10.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse10.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse11.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse11.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse11.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse11.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse12.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse12.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse12.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse12.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse13.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse13.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse13.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse13.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse14.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse14.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse14.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse14.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse15.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse15.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse15.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse15.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse16.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse16.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse16.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse16.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse17.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse17.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse17.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse17.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse18.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse18.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse18.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse18.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse5.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse5.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse5.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse5.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse6.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse6.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse6.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse6.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse7.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse7.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse7.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse7.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse8.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse8.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse8.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse8.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse9.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse9.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse9.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanual/vipsmanualse9.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualch4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualli3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse10.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse10.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse10.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse10.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse11.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse11.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse11.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse11.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse12.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse12.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse12.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse12.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse13.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse13.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse13.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse13.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse14.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse14.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse14.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse14.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse15.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse15.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse15.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse15.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse16.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse16.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse16.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse16.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse17.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse17.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse17.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse17.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse18.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse18.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse18.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse18.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse5.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse5.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse5.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse5.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse6.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse6.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse6.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse6.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse7.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse7.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse7.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse7.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse8.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse8.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse8.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse8.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse9.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse9.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse9.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vipsmanualse9.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vmask.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vmask.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vmask.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/vmask.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/wio.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/wio.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/wio.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/doc/src/wio.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/gtk-doc.make b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/gtk-doc.make similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/gtk-doc.make rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/gtk-doc.make diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/im_clamp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/im_clamp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/im_clamp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/acquire/im_clamp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/arith_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/arith_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/arith_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/arith_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_abs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_abs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_abs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_abs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_add.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_add.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_add.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_add.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_avg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_avg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_avg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_avg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_bandmean.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_bandmean.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_bandmean.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_bandmean.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_cross_phase.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_cross_phase.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_cross_phase.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_cross_phase.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_deviate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_deviate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_deviate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_deviate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_divide.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_divide.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_divide.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_divide.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_invert.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_invert.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_invert.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_invert.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_linreg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_linreg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_linreg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_linreg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_lintra.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_lintra.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_lintra.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_lintra.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_avg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_avg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_avg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_avg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_vec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_vec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_vec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_maxpos_vec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_measure.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_measure.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_measure.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_measure.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_minpos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_minpos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_minpos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_minpos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_multiply.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_multiply.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_multiply.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_multiply.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_point_bilinear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_point_bilinear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_point_bilinear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_point_bilinear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_recomb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_recomb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_recomb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_recomb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_remainder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_remainder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_remainder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_remainder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_stats.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_stats.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_stats.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_stats.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_subtract.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_subtract.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_subtract.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/im_subtract.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/math.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/math.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/math.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/math.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/power.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/power.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/power.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/power.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/round.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/round.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/round.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/arithmetic/round.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/bool_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/bool_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/bool_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/bool_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/boolean.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/boolean.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/boolean.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/boolean/boolean.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/CImg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/CImg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/CImg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/CImg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/cimg/cimg_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/colour_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/derived.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/derived.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/derived.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/derived.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/disp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/disp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/disp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/disp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2Lab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2Lab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2Lab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2Lab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2UCS.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2UCS.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2UCS.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LCh2UCS.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LCh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LCh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LCh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LCh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabQ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabQ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabQ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabQ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabS.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabS.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabS.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2LabS.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2XYZ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2XYZ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2XYZ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Lab2XYZ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2Lab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2Lab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2Lab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2Lab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2LabS.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2LabS.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2LabS.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2LabS.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2disp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2disp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2disp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabQ2disp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2Lab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2Lab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2Lab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2Lab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2LabQ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2LabQ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2LabQ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_LabS2LabQ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_UCS2LCh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_UCS2LCh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_UCS2LCh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_UCS2LCh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Lab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Lab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Lab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Lab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Yxy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Yxy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Yxy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2Yxy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2disp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2disp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2disp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_XYZ2disp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Yxy2XYZ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Yxy2XYZ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Yxy2XYZ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_Yxy2XYZ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE00_fromLab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE00_fromLab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE00_fromLab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE00_fromLab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dECMC_fromLab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dECMC_fromLab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dECMC_fromLab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dECMC_fromLab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE_fromLab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE_fromLab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE_fromLab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_dE_fromLab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_disp2XYZ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_disp2XYZ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_disp2XYZ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_disp2XYZ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_float2rad.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_float2rad.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_float2rad.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_float2rad.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_icc_transform.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_icc_transform.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_icc_transform.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_icc_transform.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_lab_morph.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_lab_morph.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_lab_morph.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_lab_morph.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_rad2float.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_rad2float.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_rad2float.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/colour/im_rad2float.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/conver_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/conver_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/conver_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/conver_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_black.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_black.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_black.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_black.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2amph.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2amph.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2amph.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2amph.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2imag.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2imag.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2imag.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2imag.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2real.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2real.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2real.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2real.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2rect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2rect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2rect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_c2rect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_clip2fmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_clip2fmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_clip2fmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_clip2fmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy_file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy_file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy_file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_copy_file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_embed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_embed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_embed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_embed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_extract.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_extract.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_extract.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_extract.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_falsecolour.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_falsecolour.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_falsecolour.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_falsecolour.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_fliphor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_fliphor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_fliphor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_fliphor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_flipver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_flipver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_flipver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_flipver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gaussnoise.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gaussnoise.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gaussnoise.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gaussnoise.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gbandjoin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gbandjoin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gbandjoin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_gbandjoin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_grid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_grid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_grid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_grid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_insert.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_insert.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_insert.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_insert.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_lrjoin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_lrjoin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_lrjoin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_lrjoin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_mask2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_mask2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_mask2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_mask2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_msb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_msb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_msb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_msb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_replicate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_replicate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_replicate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_replicate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_ri2c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_ri2c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_ri2c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_ri2c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot180.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot180.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot180.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot180.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot270.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot270.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot270.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot270.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot90.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot90.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot90.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_rot90.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scale.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scale.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scale.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scale.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scaleps.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scaleps.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scaleps.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_scaleps.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_subsample.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_subsample.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_subsample.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_subsample.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system_image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system_image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system_image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_system_image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_tbjoin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_tbjoin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_tbjoin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_tbjoin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_text.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_text.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_text.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_text.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_vips2mask.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_vips2mask.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_vips2mask.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_vips2mask.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_wrap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_wrap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_wrap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_wrap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_zoom.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_zoom.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_zoom.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/conversion/im_zoom.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/convol_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/convol_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/convol_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/convol_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_addgnoise.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_addgnoise.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_addgnoise.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_addgnoise.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_compass.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_compass.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_compass.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_compass.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_contrast_surface.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_contrast_surface.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_contrast_surface.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_contrast_surface.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv_f.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv_f.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv_f.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_conv_f.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep_f.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep_f.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep_f.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_convsep_f.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_fastcor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_fastcor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_fastcor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_fastcor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_gradcor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_gradcor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_gradcor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_gradcor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_sharpen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_sharpen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_sharpen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_sharpen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_spcor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_spcor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_spcor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/convolution/im_spcor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/deprecated_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/deprecated_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/deprecated_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/deprecated_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_bernd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_bernd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_bernd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_bernd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_cmulnorm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_cmulnorm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_cmulnorm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_cmulnorm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_convsub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_convsub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_convsub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_convsub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_debugim.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_debugim.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_debugim.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_debugim.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_fav4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_fav4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_fav4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_fav4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gadd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gadd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gadd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gadd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gaddim.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gaddim.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gaddim.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gaddim.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gfadd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gfadd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gfadd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_gfadd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_line.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_line.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_line.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_line.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_litecor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_litecor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_litecor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_litecor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_printlines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_printlines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_printlines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_printlines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_resize_linear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_resize_linear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_resize_linear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_resize_linear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_setbox.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_setbox.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_setbox.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_setbox.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_slice.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_slice.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_slice.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_slice.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_thresh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_thresh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_thresh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/im_thresh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/rename.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/rename.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/rename.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/deprecated/rename.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy2.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy2.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy2.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/dummy2.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/dbh.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/dbh.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/dbh.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/dbh.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/format_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_analyze2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_analyze2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_analyze2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_analyze2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_csv2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_csv2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_csv2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_csv2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_exr2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_exr2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_exr2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_exr2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_jpeg2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_jpeg2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_jpeg2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_jpeg2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_magick2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_magick2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_magick2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_magick2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_png2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_png2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_png2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_png2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_ppm2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_ppm2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_ppm2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_ppm2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_raw2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_raw2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_raw2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_raw2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tiff2vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tiff2vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tiff2vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tiff2vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tile_cache.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tile_cache.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tile_cache.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_tile_cache.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2csv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2csv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2csv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2csv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2jpeg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2jpeg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2jpeg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2jpeg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2png.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2png.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2png.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2png.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2ppm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2ppm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2ppm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2ppm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2raw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2raw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2raw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2raw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2tiff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2tiff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2tiff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/im_vips2tiff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/matlab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/matlab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/matlab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/matlab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/radiance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/radiance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/radiance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/format/radiance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fft_sp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fft_sp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fft_sp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fft_sp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmask4th.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmask4th.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmask4th.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmask4th.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmaskcir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmaskcir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmaskcir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/fmaskcir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/freq_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/freq_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/freq_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/freq_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_disp_ps.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_disp_ps.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_disp_ps.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_disp_ps.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fractsurf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fractsurf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fractsurf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fractsurf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freq_mask.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freq_mask.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freq_mask.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freq_mask.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freqflt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freqflt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freqflt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_freqflt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fwfft.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fwfft.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fwfft.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_fwfft.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfft.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfft.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfft.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfft.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfftr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfftr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfftr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_invfftr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_phasecor_fft.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_phasecor_fft.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_phasecor_fft.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_phasecor_fft.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_rotquad.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_rotquad.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_rotquad.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/freq_filt/im_rotquad.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/hist_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/hist_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/hist_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/hist_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_buildlut.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_buildlut.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_buildlut.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_buildlut.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_gammacorrect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_gammacorrect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_gammacorrect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_gammacorrect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_heq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_heq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_heq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_heq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histeq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histeq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histeq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histeq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histgr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histgr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histgr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histgr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histindexed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histindexed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histindexed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histindexed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histnD.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histnD.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histnD.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histnD.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histplot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histplot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histplot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histplot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histspec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histspec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histspec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_histspec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hsp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hsp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hsp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_hsp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_identity.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_identity.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_identity.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_identity.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_invertlut.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_invertlut.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_invertlut.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_invertlut.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_lhisteq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_lhisteq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_lhisteq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_lhisteq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_maplut.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_maplut.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_maplut.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_maplut.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_mpercent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_mpercent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_mpercent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_mpercent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_project.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_project.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_project.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_project.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_stdif.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_stdif.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_stdif.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/im_stdif.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/tone.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/tone.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/tone.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/histograms_lut/tone.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/almostdeprecated.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/almostdeprecated.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/almostdeprecated.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/almostdeprecated.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/arithmetic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/arithmetic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/arithmetic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/arithmetic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/boolean.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/boolean.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/boolean.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/boolean.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/buf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/buf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/buf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/buf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/callback.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/callback.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/callback.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/callback.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/check.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/check.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/check.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/check.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/cimg_funcs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/cimg_funcs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/cimg_funcs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/cimg_funcs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/colour.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/colour.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/colour.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/colour.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/conversion.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/conversion.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/conversion.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/conversion.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/convolution.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/convolution.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/convolution.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/convolution.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/deprecated.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/deprecated.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/deprecated.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/deprecated.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/disp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/disp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/disp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/disp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/dispatch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/dispatch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/dispatch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/dispatch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/error.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/error.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/error.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/error.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/format.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/format.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/format.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/format.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/freq_filt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/freq_filt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/freq_filt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/freq_filt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/generate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/generate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/generate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/generate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/header.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/header.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/header.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/header.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/histograms_lut.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/histograms_lut.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/histograms_lut.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/histograms_lut.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/image.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/image.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/image.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/image.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/inplace.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/inplace.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/inplace.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/inplace.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/interpolate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/interpolate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/interpolate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/interpolate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/intl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/intl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/intl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/intl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mask.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mask.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mask.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mask.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/memory.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/memory.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/memory.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/memory.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/meta.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/meta.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/meta.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/meta.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/morphology.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/morphology.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/morphology.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/morphology.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mosaicing.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mosaicing.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mosaicing.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/mosaicing.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/object.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/object.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/object.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/object.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/other.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/other.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/other.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/other.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/private.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/private.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/private.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/private.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/rect.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/rect.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/rect.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/rect.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/region.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/region.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/region.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/region.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/relational.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/relational.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/relational.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/relational.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/resample.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/resample.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/resample.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/resample.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/semaphore.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/semaphore.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/semaphore.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/semaphore.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/struct.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/struct.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/struct.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/struct.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/thread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/thread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/thread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/thread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/threadpool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/threadpool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/threadpool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/threadpool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/transform.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/transform.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/transform.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/transform.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/version.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/video.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/video.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/video.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/video.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/vips.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/vips.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/vips.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/include/vips/vips.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/flood.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/flood.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/flood.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/flood.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_circle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_circle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_circle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_circle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_insertplace.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_insertplace.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_insertplace.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_insertplace.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_paintrect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_paintrect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_paintrect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_paintrect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_plotmask.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_plotmask.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_plotmask.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/im_plotmask.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/inplace_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/inplace_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/inplace_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/inplace_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/line_draw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/line_draw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/line_draw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/line_draw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/plot_point.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/plot_point.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/plot_point.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/plot_point.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/smudge_area.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/smudge_area.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/smudge_area.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/inplace/smudge_area.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/base64.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/buffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/callback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/callback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/callback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/callback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/check.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/check.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/check.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/check.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/debug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/debug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/debug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/debug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/dispatch_types.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/dispatch_types.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/dispatch_types.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/dispatch_types.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/header.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/header.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/header.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/header.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_binfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_binfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_binfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_binfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_close.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_close.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_close.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_close.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_cp_desc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_cp_desc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_cp_desc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_cp_desc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_demand_hint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_demand_hint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_demand_hint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_demand_hint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_generate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_generate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_generate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_generate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_guess_prefix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_guess_prefix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_guess_prefix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_guess_prefix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_histlin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_histlin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_histlin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_histlin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_init_world.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_init_world.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_init_world.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_init_world.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_mapfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_mapfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_mapfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_mapfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open_vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open_vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open_vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_open_vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_partial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_partial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_partial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_partial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_prepare.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_prepare.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_prepare.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_prepare.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setupout.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setupout.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setupout.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_setupout.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_unmapfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_unmapfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_unmapfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_unmapfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_wrapmany.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_wrapmany.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_wrapmany.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_wrapmany.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_writeline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_writeline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_writeline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/im_writeline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/memory.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/memory.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/memory.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/memory.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/meta.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/meta.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/meta.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/meta.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/object.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/object.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/object.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/object.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/package.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/package.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/package.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/package.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/rect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/rect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/rect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/rect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/region.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/region.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/region.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/region.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/semaphore.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/semaphore.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/semaphore.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/semaphore.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkdisc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkdisc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkdisc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkdisc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkmemory.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkmemory.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkmemory.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkmemory.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkscreen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkscreen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkscreen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/sinkscreen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/threadpool.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/threadpool.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/threadpool.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/threadpool.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/time.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/time.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/time.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/time.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/window.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/window.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/window.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/iofuncs/window.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_gaussmasks.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_gaussmasks.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_gaussmasks.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_gaussmasks.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_logmasks.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_logmasks.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_logmasks.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_logmasks.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matcat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matcat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matcat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matcat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matmul.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matmul.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matmul.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_matmul.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_mattrn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_mattrn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_mattrn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/im_mattrn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/mask_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/mask_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/mask_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/mask_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/matalloc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/matalloc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/matalloc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/matalloc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rotmask.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rotmask.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rotmask.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rotmask.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rw_mask.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rw_mask.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rw_mask.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mask/rw_mask.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_cntlines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_cntlines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_cntlines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_cntlines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_dilate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_dilate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_dilate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_dilate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_erode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_erode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_erode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_erode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_label_regions.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_label_regions.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_label_regions.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_label_regions.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_profile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_profile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_profile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_profile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank_image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank_image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank_image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_rank_image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_zerox.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_zerox.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_zerox.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/im_zerox.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/morph_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/morph_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/morph_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/morphology/morph_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/global_balance.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_align_bands.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_align_bands.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_align_bands.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_align_bands.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_avgdxdy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_avgdxdy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_avgdxdy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_avgdxdy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_chkpair.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_chkpair.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_chkpair.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_chkpair.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_clinear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_clinear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_clinear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_clinear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_improve.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_improve.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_improve.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_improve.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_initialize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_initialize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_initialize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_initialize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrcalcon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrcalcon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrcalcon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrcalcon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmerge.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmerge.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmerge.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmerge.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmosaic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmosaic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmosaic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_lrmosaic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_maxpos_subpel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_maxpos_subpel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_maxpos_subpel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_maxpos_subpel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_remosaic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_remosaic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_remosaic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_remosaic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbcalcon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbcalcon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbcalcon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbcalcon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmerge.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmerge.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmerge.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmerge.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmosaic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmosaic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmosaic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/im_tbmosaic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/match.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/match.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/match.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/match.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/merge.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/merge.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/merge.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/merge.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaic1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaicing_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaicing_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaicing_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/mosaicing/mosaicing_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/cooc_funcs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/cooc_funcs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/cooc_funcs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/cooc_funcs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/glds_funcs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/glds_funcs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/glds_funcs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/glds_funcs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_benchmark.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_benchmark.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_benchmark.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_benchmark.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_dif_std.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_dif_std.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_dif_std.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_dif_std.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_eye.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_eye.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_eye.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_eye.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_grey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_grey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_grey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_grey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_make_xy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_make_xy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_make_xy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_make_xy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_meanstd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_meanstd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_meanstd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_meanstd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_simcontr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_simcontr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_simcontr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_simcontr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_sines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_sines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_sines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_sines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_spatres.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_spatres.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_spatres.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_spatres.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_zone.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_zone.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_zone.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/im_zone.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/other_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/other_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/other_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/other/other_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_blend.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_blend.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_blend.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_blend.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_ifthenelse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_ifthenelse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_ifthenelse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/im_ifthenelse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/relational/relational_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/bicubic.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/bicubic.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/bicubic.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/bicubic.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_affine.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_affine.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_affine.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_affine.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_rightshift_size.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_rightshift_size.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_rightshift_size.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_rightshift_size.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_shrink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_shrink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_shrink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_shrink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_stretch3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_stretch3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_stretch3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/im_stretch3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/interpolate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/interpolate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/interpolate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/interpolate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/lbb.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/lbb.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/lbb.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/lbb.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/nohalo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/nohalo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/nohalo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/nohalo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/resample_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/resample_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/resample_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/resample_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/templates.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/templates.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/templates.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/templates.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/transform.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/transform.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/transform.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/transform.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/vsqbs.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/vsqbs.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/vsqbs.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/resample/vsqbs.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_v4l1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_v4l1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_v4l1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/im_video_v4l1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/video_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/video_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/video_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvips/video/video_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VDisplay.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VDisplay.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VDisplay.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VDisplay.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VError.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VError.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VError.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VError.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VImage.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VImage.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VImage.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VImage.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VMask.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VMask.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VMask.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/VMask.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VDisplay.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VDisplay.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VDisplay.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VDisplay.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VError.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VError.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VError.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VError.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VImage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VImage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VImage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VImage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VMask.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VMask.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VMask.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/VMask.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vips b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vips similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vips rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vips diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipsc++.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipsc++.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipsc++.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipsc++.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipscpp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipscpp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipscpp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/include/vips/vipscpp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/vipsc++.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/vipsc++.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/vipsc++.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/libvipsCC/vipsc++.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/gtk-doc.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/gtk-doc.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/gtk-doc.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/gtk-doc.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/libtool.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/libtool.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/libtool.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/libtool.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltoptions.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltoptions.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltoptions.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltoptions.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltsugar.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltsugar.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltsugar.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltsugar.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltversion.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltversion.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltversion.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/ltversion.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/lt~obsolete.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/lt~obsolete.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/lt~obsolete.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/m4/lt~obsolete.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_ARRAY.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_ARRAY.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_ARRAY.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_ARRAY.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_ADDR.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_ADDR.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_ADDR.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_ADDR.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_N_ELEMENTS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_N_ELEMENTS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_N_ELEMENTS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_N_ELEMENTS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_ELEMENT.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_ELEMENT.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_ELEMENT.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_ELEMENT.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_LINE.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_LINE.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_LINE.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_LINE.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_PEL.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_PEL.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_PEL.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_PEL.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_MACROS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_MACROS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_MACROS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_MACROS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NEW.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NEW.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NEW.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NEW.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NUMBER.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NUMBER.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NUMBER.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_NUMBER.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_BOTTOM.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_BOTTOM.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_BOTTOM.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_BOTTOM.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_HCENTRE.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_HCENTRE.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_HCENTRE.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_HCENTRE.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_RIGHT.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_RIGHT.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_RIGHT.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_RIGHT.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_VCENTRE.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_VCENTRE.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_VCENTRE.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_RECT_VCENTRE.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_ADDR.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_ADDR.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_ADDR.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_ADDR.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_LSKIP.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_LSKIP.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_LSKIP.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_LSKIP.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_N_ELEMENTS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_N_ELEMENTS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_N_ELEMENTS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_N_ELEMENTS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_SIZEOF_LINE.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_SIZEOF_LINE.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_SIZEOF_LINE.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/IM_REGION_SIZEOF_LINE.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsFormat.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsFormat.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsFormat.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsFormat.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsInterpolate.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsInterpolate.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsInterpolate.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsInterpolate.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsObject.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsObject.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsObject.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/VipsObject.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_crop.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_crop.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_crop.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_crop.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_image_convert.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_image_convert.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_image_convert.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_image_convert.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_rubber_sheet.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_rubber_sheet.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_rubber_sheet.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/batch_rubber_sheet.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/binfile.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/binfile.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/binfile.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/binfile.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc_features.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc_features.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc_features.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/cooc_features.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/debugim.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/debugim.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/debugim.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/debugim.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/edvips.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/edvips.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/edvips.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/edvips.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/error_exit.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/error_exit.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/error_exit.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/error_exit.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds_features.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds_features.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds_features.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/glds_features.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/header.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/header.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/header.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/header.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_BandFmt2char.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_BandFmt2char.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_BandFmt2char.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_BandFmt2char.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Coding2char.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Coding2char.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Coding2char.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Coding2char.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Compression2char.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Compression2char.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Compression2char.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Compression2char.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2Lab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2Lab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2Lab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2Lab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2UCS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2UCS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2UCS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LCh2UCS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LCh.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LCh.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LCh.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LCh.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabQ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabQ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabQ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabQ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2LabS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2UCS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2UCS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2UCS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2UCS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2disp.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2disp.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2disp.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Lab2disp.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2Lab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2Lab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2Lab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2Lab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2LabS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2LabS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2LabS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2LabS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_build_table.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_build_table.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_build_table.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_build_table.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_table.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_table.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_table.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabQ2disp_table.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2Lab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2Lab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2Lab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2Lab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2LabQ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2LabQ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2LabQ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_LabS2LabQ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Type2char.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Type2char.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Type2char.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Type2char.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2LCh.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2LCh.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2LCh.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2LCh.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2Lab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2Lab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2Lab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2Lab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_UCS2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Lab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Lab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Lab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Lab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2UCS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2UCS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2UCS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2UCS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Yxy.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Yxy.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Yxy.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2Yxy.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2disp.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2disp.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2disp.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2disp.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2sRGB.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2sRGB.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2sRGB.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_XYZ2sRGB.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Yxy2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Yxy2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Yxy2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_Yxy2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_abs.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_abs.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_abs.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_abs.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_acostra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_acostra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_acostra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_acostra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_close_callback.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_close_callback.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_close_callback.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_close_callback.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_eval_callback.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_eval_callback.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_eval_callback.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_eval_callback.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalend_callback.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalend_callback.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalend_callback.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalend_callback.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalstart_callback.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalstart_callback.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalstart_callback.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_evalstart_callback.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_invalidate_callback.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_invalidate_callback.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_invalidate_callback.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_invalidate_callback.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_preclose_callback.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_preclose_callback.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_preclose_callback.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_add_preclose_callback.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_addgnoise.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_addgnoise.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_addgnoise.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_addgnoise.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affine.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affine.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affine.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affine.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei_all.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei_all.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei_all.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_affinei_all.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_allocate_input_array.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_allocate_input_array.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_allocate_input_array.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_allocate_input_array.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_amiMSBfirst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_amiMSBfirst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_amiMSBfirst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_amiMSBfirst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_analyze2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_analyze2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_analyze2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_analyze2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_and_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_and_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_and_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_and_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andimage.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andimage.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andimage.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_andimage.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_asintra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_asintra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_asintra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_asintra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_atantra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_atantra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_atantra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_atantra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_avg.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_avg.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_avg.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_avg.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandjoin.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandjoin.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandjoin.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandjoin.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandmean.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandmean.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandmean.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bandmean.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_benchmark.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_benchmark.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_benchmark.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_benchmark.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_binfile.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_binfile.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_binfile.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_binfile.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bits_of_fmt.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bits_of_fmt.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bits_of_fmt.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_bits_of_fmt.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_black.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_black.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_black.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_black.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_blend.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_blend.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_blend.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_blend.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_buildlut.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_buildlut.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_buildlut.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_buildlut.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2amph.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2amph.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2amph.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2amph.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2imag.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2imag.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2imag.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2imag.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2ps.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2ps.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2ps.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2ps.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2real.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2real.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2real.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2real.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2rect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2rect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2rect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_c2rect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cache.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cache.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cache.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cache.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ceil.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ceil.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ceil.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ceil.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2BandFmt.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2BandFmt.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2BandFmt.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2BandFmt.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Coding.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Coding.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Coding.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Coding.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Compression.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Compression.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Compression.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Compression.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Type.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Type.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Type.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_char2Type.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_circle.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_circle.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_circle.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_circle.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2c.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2c.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2c.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2c.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2cm.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2cm.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2cm.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2cm.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2d.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2d.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2d.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2d.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2dcm.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2dcm.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2dcm.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2dcm.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2f.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2f.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2f.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2f.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2fmt.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2fmt.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2fmt.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2fmt.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2i.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2i.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2i.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2i.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2s.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2s.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2s.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2s.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2ui.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2ui.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2ui.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2ui.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2us.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2us.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2us.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_clip2us.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_close.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_close.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_close.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_close.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cmulnorm.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cmulnorm.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cmulnorm.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cmulnorm.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cntlines.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cntlines.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cntlines.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cntlines.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_C2Cucs.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_C2Cucs.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_C2Cucs.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_C2Cucs.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2ab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2ab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2ab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2ab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2hucs.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2hucs.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2hucs.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Ch2hucs.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Chucs2h.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Chucs2h.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Chucs2h.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Chucs2h.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Cucs2C.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Cucs2C.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Cucs2C.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Cucs2C.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_L2Lucs.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_L2Lucs.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_L2Lucs.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_L2Lucs.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lab2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lab2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lab2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lab2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lucs2L.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lucs2L.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lucs2L.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_Lucs2L.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2Lab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2Lab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2Lab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2Lab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2rgb.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2rgb.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2rgb.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_XYZ2rgb.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_ab2Ch.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_ab2Ch.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_ab2Ch.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_ab2Ch.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_dECMC.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_dECMC.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_dECMC.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_dECMC.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_display.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_display.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_display.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_display.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_RGB.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_RGB.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_RGB.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_RGB.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_UCS.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_UCS.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_UCS.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_make_tables_UCS.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_pythagoras.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_pythagoras.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_pythagoras.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_pythagoras.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_rgb2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_rgb2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_rgb2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_col_rgb2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_compass.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_compass.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_compass.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_compass.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_get.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_get.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_get.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_get.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_set.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_set.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_set.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_concurrency_set.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_contrast_surface_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_conv_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convf_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsep_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsepf_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsub.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsub.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsub.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_convsub.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_asm.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_asm.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_asm.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_asm.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_contrast.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_contrast.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_contrast.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_contrast.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_correlation.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_correlation.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_correlation.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_correlation.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_entropy.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_entropy.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_entropy.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_entropy.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_matrix.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_matrix.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_matrix.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cooc_matrix.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_from.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_from.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_from.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_from.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_morph.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_morph.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_morph.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_morph.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set_meta.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set_meta.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set_meta.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_set_meta.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_swap.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_swap.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_swap.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_copy_swap.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_correl.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_correl.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_correl.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_correl.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_costra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_costra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_costra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_costra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc_array.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc_array.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc_array.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_desc_array.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_descv.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_descv.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_descv.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_cp_descv.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_fmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_fmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_fmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_fmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_create_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_csv2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_csv2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_csv2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_csv2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE00_fromLab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE00_fromLab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE00_fromLab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE00_fromLab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromLab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromLab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromLab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromLab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromdisp.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromdisp.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromdisp.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dECMC_fromdisp.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromLab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromLab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromLab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromLab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromXYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromXYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromXYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromXYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromdisp.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromdisp.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromdisp.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dE_fromdisp.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_debugim.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_debugim.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_debugim.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_debugim.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint_array.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint_array.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint_array.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_demand_hint_array.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_deviate.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_deviate.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_deviate.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_deviate.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_diag.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_diag.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_diag.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_diag.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dif_std.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dif_std.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dif_std.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dif_std.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dilate_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2Lab.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2Lab.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2Lab.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2Lab.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp_ps.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp_ps.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp_ps.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_disp_ps.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_divide.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_divide.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_divide.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_divide.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_dup_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_embed.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_embed.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_embed.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_embed.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eor_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eor_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eor_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eor_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorimage.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorimage.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorimage.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eorimage.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equal_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equalconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equalconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equalconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_equalconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_erode_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_buffer.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_buffer.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_buffer.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_buffer.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_clear.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_clear.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_clear.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_error_clear.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exp10tra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exp10tra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exp10tra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exp10tra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_expntra_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exptra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exptra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exptra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exptra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exr2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exr2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exr2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_exr2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_area.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_area.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_area.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_area.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_areabands.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_areabands.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_areabands.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_areabands.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_bands.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_bands.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_bands.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_extract_bands.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eye.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eye.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eye.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_eye.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_falsecolour.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_falsecolour.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_falsecolour.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_falsecolour.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastcor.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastcor.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastcor.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastcor.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastline.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastline.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastline.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastline.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastlineuser.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastlineuser.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastlineuser.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fastlineuser.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fav4.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fav4.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fav4.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fav4.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_feye.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_feye.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_feye.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_feye.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fgrey.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fgrey.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fgrey.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fgrey.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fliphor.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fliphor.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fliphor.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fliphor.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flipver.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flipver.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flipver.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flipver.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_float2rad.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_float2rad.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_float2rad.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_float2rad.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood_blob.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood_blob.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood_blob.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flood_blob.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_floor.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_floor.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_floor.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_floor.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flt_imag_freq.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flt_imag_freq.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flt_imag_freq.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_flt_imag_freq.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fractsurf.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fractsurf.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fractsurf.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fractsurf.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_free_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_freqflt.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_freqflt.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_freqflt.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_freqflt.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fwfft.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fwfft.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fwfft.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fwfft.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fzone.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fzone.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fzone.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_fzone.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gadd.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gadd.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gadd.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gadd.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaddim.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaddim.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaddim.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaddim.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gammacorrect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gammacorrect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gammacorrect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gammacorrect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask_sep.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask_sep.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask_sep.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gauss_imask_sep.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaussnoise.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaussnoise.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaussnoise.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gaussnoise.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gbandjoin.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gbandjoin.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gbandjoin.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gbandjoin.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_generate.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_generate.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_generate.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_generate.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_get_option_group.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_get_option_group.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_get_option_group.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_get_option_group.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gfadd.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gfadd.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gfadd.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gfadd.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_asm.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_asm.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_asm.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_asm.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_contrast.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_contrast.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_contrast.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_contrast.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_entropy.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_entropy.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_entropy.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_entropy.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_matrix.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_matrix.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_matrix.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_matrix.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_mean.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_mean.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_mean.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_glds_mean.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance_float.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance_float.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance_float.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_global_balance_float.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_x.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_x.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_x.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_x.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_y.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_y.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_y.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grad_y.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradcor.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradcor.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradcor.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradcor.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradient.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradient.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradient.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_gradient.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grey.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grey.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grey.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grey.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grid.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grid.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grid.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_grid.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_libdir.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_libdir.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_libdir.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_libdir.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_prefix.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_prefix.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_prefix.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_guess_prefix.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_double.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_double.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_double.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_double.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get_type.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get_type.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get_type.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_get_type.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_int.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_int.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_int.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_int.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_map.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_map.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_map.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_map.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_string.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_string.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_string.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_header_string.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_heq.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_heq.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_heq.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_heq.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hist.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hist.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hist.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hist.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histcum.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histcum.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histcum.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histcum.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histeq.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histeq.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histeq.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histeq.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histgr.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histgr.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histgr.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histgr.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histlin.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histlin.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histlin.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histlin.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnD.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnD.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnD.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnD.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnorm.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnorm.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnorm.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histnorm.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_history_get.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_history_get.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_history_get.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_history_get.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histplot.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histplot.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histplot.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histplot.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histspec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histspec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histspec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_histspec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hsp.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hsp.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hsp.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_hsp.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_ac2rc.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_ac2rc.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_ac2rc.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_ac2rc.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export_depth.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export_depth.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export_depth.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_export_depth.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import_embedded.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import_embedded.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import_embedded.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_import_embedded.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_present.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_present.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_present.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_present.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_transform.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_transform.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_transform.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_icc_transform.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity_ushort.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity_ushort.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity_ushort.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_identity_ushort.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ifthenelse.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ifthenelse.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ifthenelse.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ifthenelse.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image_sanity.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image_sanity.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image_sanity.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_image_sanity.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_incheck.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_incheck.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_incheck.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_incheck.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init_world.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init_world.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init_world.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_init_world.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_initdesc.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_initdesc.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_initdesc.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_initdesc.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insert.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insert.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insert.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insert.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insertplace.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insertplace.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insertplace.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_insertplace.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invalidate.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invalidate.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invalidate.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invalidate.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invert.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invert.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invert.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invert.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invertlut.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invertlut.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invertlut.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invertlut.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfft.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfft.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfft.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfft.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfftr.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfftr.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfftr.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_invfftr.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iocheck.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iocheck.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iocheck.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iocheck.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isMSBfirst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isMSBfirst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isMSBfirst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isMSBfirst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iscomplex.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iscomplex.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iscomplex.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iscomplex.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfile.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfile.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfile.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfile.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfloat.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfloat.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfloat.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isfloat.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isint.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isint.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isint.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isint.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ispartial.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ispartial.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ispartial.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ispartial.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isscalar.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isscalar.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isscalar.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isscalar.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isuint.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isuint.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isuint.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isuint.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isvips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isvips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isvips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_isvips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iterate.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iterate.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iterate.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_iterate.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_jpeg2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_jpeg2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_jpeg2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_jpeg2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lab_morph.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lab_morph.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lab_morph.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lab_morph.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_less_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lessconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lessconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lessconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lessconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseq_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseqconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseqconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseqconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lesseqconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq_raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq_raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq_raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lhisteq_raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lindetect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lindetect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lindetect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lindetect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_line.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_line.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_line.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_line.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lineset.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lineset.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lineset.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lineset.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lintra_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_litecor.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_litecor.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_litecor.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_litecor.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log10tra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log10tra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log10tra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log10tra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_log_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_logtra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_logtra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_logtra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_logtra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lowpass.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lowpass.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lowpass.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lowpass.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrjoin.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrjoin.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrjoin.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrjoin.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmerge.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmerge.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmerge.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmerge.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmosaic.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmosaic.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmosaic.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lrmosaic.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_decomp.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_decomp.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_decomp.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_decomp.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_solve.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_solve.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_solve.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_lu_solve.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_magick2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_magick2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_magick2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_magick2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_make_xy.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_make_xy.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_make_xy.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_make_xy.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_makerw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_makerw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_makerw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_makerw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_malloc.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_malloc.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_malloc.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_malloc.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maplut.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maplut.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maplut.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maplut.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mask2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mask2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mask2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mask2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matcat.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matcat.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matcat.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matcat.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear_search.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear_search.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear_search.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_match_linear_search.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv_inplace.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv_inplace.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv_inplace.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matinv_inplace.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matmul.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matmul.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matmul.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_matmul.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mattrn.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mattrn.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mattrn.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mattrn.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_max.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_max.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_max.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_max.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxpos_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxvalue.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxvalue.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxvalue.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_maxvalue.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_double_buffer.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_double_buffer.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_double_buffer.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_double_buffer.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_int_buffer.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_int_buffer.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_int_buffer.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mean_std_int_buffer.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_measure.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_measure.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_measure.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_measure.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_area.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_area.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_area.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_area.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_blob.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_blob.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_blob.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_blob.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_double.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_double.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_double.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_double.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_int.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_int.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_int.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_int.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_string.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_string.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_string.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_string.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_type.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_type.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_type.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_get_type.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_area.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_area.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_area.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_area.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_blob.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_blob.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_blob.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_blob.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_double.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_double.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_double.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_double.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_int.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_int.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_int.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_int.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_string.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_string.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_string.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_meta_set_string.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_min.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_min.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_min.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_min.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_minpos_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapin.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapin.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapin.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapin.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapinrw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapinrw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapinrw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mmapinrw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_more_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeq_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeqconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeqconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeqconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_moreeqconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mpercent.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mpercent.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mpercent.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_mpercent.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb_band.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb_band.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb_band.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_msb_band.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_multiply.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_multiply.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_multiply.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_multiply.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_norm_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_norm_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_norm_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_norm_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequal_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequalconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequalconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequalconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_notequalconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets45.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets45.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets45.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets45.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets90.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets90.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets90.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_offsets90.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local_array.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local_array.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local_array.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_open_local_array.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_openout.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_openout.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_openout.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_openout.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_or_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_or_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_or_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_or_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orimage.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orimage.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orimage.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_orimage.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_outcheck.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_outcheck.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_outcheck.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_outcheck.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_paintrect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_paintrect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_paintrect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_paintrect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_partial.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_partial.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_partial.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_partial.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_pincheck.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_pincheck.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_pincheck.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_pincheck.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_piocheck.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_piocheck.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_piocheck.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_piocheck.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotpoint.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotpoint.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotpoint.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_plotpoint.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_png2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_png2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_png2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_png2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_poutcheck.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_poutcheck.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_poutcheck.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_poutcheck.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_powtra_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ppm2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ppm2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ppm2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ppm2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_many.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_many.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_many.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_many.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_to.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_to.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_to.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_prepare_to.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_print_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printdesc.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printdesc.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printdesc.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printdesc.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printlines.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printlines.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printlines.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_printlines.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_profile.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_profile.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_profile.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_profile.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_project.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_project.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_project.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_project.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantim.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantim.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantim.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantim.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantlut.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantlut.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantlut.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_quantlut.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rad2float.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rad2float.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rad2float.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rad2float.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank_image.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank_image.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank_image.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rank_image.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_raw2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_raw2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_raw2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_raw2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_read_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_readpoint.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_readpoint.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_readpoint.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_readpoint.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_recomb.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_recomb.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_recomb.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_recomb.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_dup.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_dup.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_dup.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_dup.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_equalsrect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_equalsrect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_equalsrect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_equalsrect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includespoint.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includespoint.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includespoint.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includespoint.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includesrect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includesrect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includesrect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_includesrect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_intersectrect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_intersectrect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_intersectrect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_intersectrect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_isempty.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_isempty.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_isempty.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_isempty.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_marginadjust.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_marginadjust.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_marginadjust.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_marginadjust.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_normalise.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_normalise.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_normalise.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_normalise.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_unionrect.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_unionrect.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_unionrect.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rect_unionrect.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_buffer.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_buffer.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_buffer.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_buffer.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_create.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_create.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_create.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_create.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_free.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_free.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_free.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_free.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_image.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_image.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_image.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_image.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_position.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_position.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_position.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_position.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_region.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_region.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_region.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_region_region.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainder.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainder.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainder.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainder.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst_vec.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst_vec.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst_vec.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remainderconst_vec.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remosaic.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remosaic.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remosaic.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_remosaic.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render_fade.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render_fade.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render_fade.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_render_fade.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_replicate.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_replicate.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_replicate.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_replicate.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_resize_linear.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_resize_linear.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_resize_linear.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_resize_linear.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ri2c.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ri2c.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ri2c.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_ri2c.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rightshift_size.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rightshift_size.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rightshift_size.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rightshift_size.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rint.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rint.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rint.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rint.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot180.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot180.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot180.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot180.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot270.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot270.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot270.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot270.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot90.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot90.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot90.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rot90.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask45.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask45.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask45.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask45.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask90.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask90.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask90.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_dmask90.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask45.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask45.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask45.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask45.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask90.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask90.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask90.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotate_imask90.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotquad.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotquad.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotquad.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_rotquad.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sRGB2XYZ.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sRGB2XYZ.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sRGB2XYZ.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sRGB2XYZ.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scale_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scaleps.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scaleps.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scaleps.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_scaleps.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setbuf.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setbuf.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setbuf.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setbuf.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setupout.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setupout.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setupout.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_setupout.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sharpen.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sharpen.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sharpen.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sharpen.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftleft.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftleft.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftleft.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftleft.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftright.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftright.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftright.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shiftright.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shrink.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shrink.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shrink.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_shrink.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sign.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sign.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sign.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sign.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_simcontr.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_simcontr.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_simcontr.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_simcontr.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity_area.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity_area.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity_area.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_similarity_area.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sines.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sines.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sines.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sines.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sintra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sintra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sintra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_sintra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_slice.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_slice.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_slice.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_slice.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smear.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smear.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smear.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smear.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smudge.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smudge.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smudge.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_smudge.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spatres.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spatres.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spatres.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spatres.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spcor.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spcor.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spcor.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_spcor.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_many.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_many.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_many.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_many.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_one.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_one.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_one.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_start_one.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stats.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stats.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stats.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stats.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stdif.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stdif.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stdif.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stdif.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_many.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_many.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_many.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_many.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_one.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_one.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_one.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stop_one.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stretch3.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stretch3.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stretch3.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_stretch3.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subsample.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subsample.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subsample.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subsample.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subtract.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subtract.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subtract.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_subtract.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_system.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_system.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_system.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_system.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tantra.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tantra.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tantra.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tantra.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbjoin.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbjoin.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbjoin.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbjoin.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmerge.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmerge.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmerge.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmerge.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmosaic.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmosaic.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmosaic.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tbmosaic.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_text.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_text.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_text.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_text.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_thresh.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_thresh.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_thresh.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_thresh.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tiff2vips.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tiff2vips.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tiff2vips.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tiff2vips.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tile_cache.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tile_cache.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tile_cache.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tile_cache.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_analyse.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_analyse.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_analyse.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_analyse.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_build.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_build.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_build.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_build.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_map.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_map.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_map.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_tone_map.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_updatehist.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_updatehist.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_updatehist.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_updatehist.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_verror.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_verror.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_verror.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_verror.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version_string.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version_string.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version_string.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_version_string.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_video_v4l1.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_video_v4l1.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_video_v4l1.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_video_v4l1.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2bufjpeg.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2bufjpeg.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2bufjpeg.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2bufjpeg.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2csv.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2csv.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2csv.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2csv.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2jpeg.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2jpeg.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2jpeg.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2jpeg.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mimejpeg.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mimejpeg.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mimejpeg.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2mimejpeg.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2png.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2png.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2png.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2png.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2ppm.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2ppm.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2ppm.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2ppm.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2raw.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2raw.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2raw.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2raw.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2tiff.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2tiff.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2tiff.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_vips2tiff.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_warn.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_warn.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_warn.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_warn.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapmany.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapmany.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapmany.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapmany.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapone.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapone.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapone.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_wrapone.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask_name.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask_name.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask_name.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_dmask_name.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask_name.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask_name.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask_name.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_write_imask_name.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_writeline.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_writeline.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_writeline.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_writeline.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zerox.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zerox.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zerox.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zerox.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zone.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zone.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zone.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zone.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zoom.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zoom.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zoom.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/im_zoom.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/light_correct.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/light_correct.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/light_correct.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/light_correct.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/printlines.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/printlines.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/printlines.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/printlines.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/simcontr.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/simcontr.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/simcontr.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/simcontr.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/sines.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/sines.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/sines.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/sines.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/squares.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/squares.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/squares.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/squares.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_file.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_file.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_file.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_file.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_name.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_name.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_name.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_for_name.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_map.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_map.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_map.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_map.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_read.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_read.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_read.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_read.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_write.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_write.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_write.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vips_format_write.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vipsthumbnail.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vipsthumbnail.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vipsthumbnail.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/man/vipsthumbnail.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/mkinstalldirs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/mkinstalldirs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/mkinstalldirs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/mkinstalldirs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/LINGUAS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/LINGUAS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/LINGUAS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/LINGUAS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/Makefile.in.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/Makefile.in.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/Makefile.in.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/Makefile.in.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/POTFILES.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/POTFILES.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/POTFILES.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/POTFILES.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/de.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/en_GB.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/vips7.pot b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/vips7.pot similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/vips7.pot rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/po/vips7.pot diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/py-compile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/py-compile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/py-compile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/py-compile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/python/setup.py.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/python/setup.py.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/python/setup.py.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/python/setup.py.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_pil.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_pil.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_pil.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_pil.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_vips.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_vips.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_vips.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/bench_vips.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/pilvips.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/pilvips.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/pilvips.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/pilvips.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/testvipsCC.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/testvipsCC.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/testvipsCC.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/test/testvipsCC.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.i b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.i similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.i rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.i diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VDisplay.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.i b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.i similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.i rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.i diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VError.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.i b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.i similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.i rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.i diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VImage.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.i b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.i similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.i rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.i diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/VMask.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/__init__.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/__init__.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/__init__.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/__init__.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vdisplaymodule.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vdisplaymodule.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vdisplaymodule.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vdisplaymodule.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/verrormodule.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/verrormodule.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/verrormodule.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/verrormodule.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vimagemodule.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vimagemodule.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vimagemodule.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vimagemodule.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vmaskmodule.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vmaskmodule.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vmaskmodule.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/swig/vipsCC/vmaskmodule.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/edvips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/edvips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/edvips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/edvips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/header.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/header.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/header.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/header.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vipsthumbnail.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vipsthumbnail.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vipsthumbnail.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/iofuncs/vipsthumbnail.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/find_mosaic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/find_mosaic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/find_mosaic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/find_mosaic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/mergeup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/mergeup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/mergeup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/mosaicing/mergeup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc_features.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc_features.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc_features.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/cooc_features.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds_features.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds_features.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds_features.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/glds_features.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/simcontr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/simcontr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/simcontr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/simcontr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/sines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/sines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/sines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/sines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/spatres.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/spatres.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/spatres.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/spatres.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/squares.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/squares.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/squares.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/other/squares.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_crop.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_crop.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_crop.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_crop.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_image_convert.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_image_convert.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_image_convert.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_image_convert.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_rubber_sheet.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_rubber_sheet.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_rubber_sheet.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/batch_rubber_sheet.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/light_correct.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/light_correct.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/light_correct.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/light_correct.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/post_install b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/post_install similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/post_install rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/post_install diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/shrink_width.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/shrink_width.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/shrink_width.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/shrink_width.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/vips-7.22 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/vips-7.22 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/vips-7.22 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/tools/scripts/vips-7.22 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vips-7.22.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vips-7.22.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vips-7.22.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vips-7.22.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vipsCC-7.22.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vipsCC-7.22.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vipsCC-7.22.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/src/vipsCC-7.22.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/vips/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Doxyfile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Doxyfile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Doxyfile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Doxyfile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/libx264.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/libx264.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/libx264.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/libx264.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/build/win32/x264.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/bs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/bs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/bs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/bs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cabac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/cpu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/dct.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display-x11.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display-x11.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display-x11.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display-x11.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/display.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/frame.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/macroblock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mdate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mdate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mdate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/mdate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/osdep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/osdep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/osdep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/osdep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/pixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/dct.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/deblock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/deblock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/deblock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/deblock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/mc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/pixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/ppccommon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/ppccommon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/ppccommon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/ppccommon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/predict.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/ppc/quant.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/predict.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/quant.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/set.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/sparc/pixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/visualize.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/vlc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/vlc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/vlc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/vlc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cabac-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cabac-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cabac-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cabac-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cpu-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cpu-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cpu-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/cpu-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/dct.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/deblock-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/deblock-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/deblock-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/deblock-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-a2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc-c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/mc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/pixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict-c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/predict.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/quant.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/sad-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/sad-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/sad-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/sad-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86inc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86inc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86inc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86inc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86util.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86util.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86util.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/common/x86/x86util.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/conftest.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/conftest.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/conftest.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/conftest.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/ratecontrol.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/ratecontrol.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/ratecontrol.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/ratecontrol.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/regression_test.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/regression_test.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/regression_test.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/regression_test.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/standards.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/standards.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/standards.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/standards.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/threads.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/threads.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/threads.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/threads.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/vui.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/vui.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/vui.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/doc/vui.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/analyse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cabac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cabac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cabac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cabac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cavlc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cavlc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cavlc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/cavlc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/encoder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/encoder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/encoder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/encoder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/macroblock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/me.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/ratecontrol.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/rdo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/rdo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/rdo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/rdo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/set.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/slicetype.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/slicetype.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/slicetype.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/encoder/slicetype.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/getopt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/extras/stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/matroska.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/muxers.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm-a.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm-a.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm-a.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm-a.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/checkasm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/countquant_x264.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/countquant_x264.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/countquant_x264.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/countquant_x264.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/q_matrix_jvt.cfg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/q_matrix_jvt.cfg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/q_matrix_jvt.cfg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/q_matrix_jvt.cfg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/regression-test.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/regression-test.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/regression-test.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/regression-test.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/xyuv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/xyuv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/xyuv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/tools/xyuv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/version.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/version.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/version.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/version.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/src/x264.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/apps/x264/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/AtomicPtr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/AtomicPtr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/AtomicPtr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/AtomicPtr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/MersenneTwister.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/MersenneTwister.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/MersenneTwister.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/MersenneTwister.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_thread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/annealer_types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/aarch64/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/aarch64/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/aarch64/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/aarch64/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/alpha/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/alpha/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/alpha/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/alpha/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/amd64/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/amd64/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/amd64/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/amd64/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/i386/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/i386/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/i386/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/i386/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/ia64/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/ia64/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/ia64/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/ia64/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/powerpc/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/powerpc/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/powerpc/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/powerpc/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/asi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/asi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/asi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/asi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/cpufunc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/cpufunc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/cpufunc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/atomic/sparc/cpufunc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/location_t.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/location_t.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/location_t.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/location_t.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/netlist_elem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/src/rng.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/canneal/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/binheap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/decoder.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedupdef.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedupdef.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedupdef.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/dedupdef.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/encoder.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable_private.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable_private.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable_private.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/hashtable_private.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/mbuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/md32_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/md32_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/md32_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/md32_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/openssl/sha_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/queue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/rabin.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/sha.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/tree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/src/util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/dedup/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/parsec_barrier.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/streamcluster.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/streamcluster.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/streamcluster.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/src/streamcluster.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/kernels/streamcluster/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-1-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-1-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-1-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-1-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-14 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-14 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-14 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-14 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-16 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-16 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-16 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-16 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-18 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-18 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-18 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-18 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-20 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-20 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-20 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-20 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ChangeLog.pre-2-8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/HACKING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/HACKING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/HACKING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/HACKING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/INSTALL.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/MAINTAINERS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/MAINTAINERS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/MAINTAINERS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/MAINTAINERS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.decl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.decl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.decl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.decl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS.pre-1-3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS.pre-1-3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS.pre-1-3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/NEWS.pre-1-3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.commits b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.commits similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.commits rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.commits diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.win32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.win32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.win32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/README.win32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acglib.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acglib.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acglib.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acglib.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acinclude.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acinclude.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acinclude.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/acinclude.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/autogen.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/autogen.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/autogen.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/autogen.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent-zip b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent-zip similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent-zip rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent-zip diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/dirent.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/wdirent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/wdirent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/wdirent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/dirent/wdirent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/make.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/make.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/make.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/make.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/module.defs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/module.defs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/module.defs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/module.defs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/README.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/README.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/README.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/README.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcprojin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcprojin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcprojin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gio.vcprojin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib-genmarshal.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib-genmarshal.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib-genmarshal.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib-genmarshal.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcprojin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcprojin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcprojin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vcprojin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vsprops b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vsprops similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vsprops rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/glib.vsprops diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gmodule.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gmodule.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gmodule.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gmodule.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcprojin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcprojin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcprojin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gobject.vcprojin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper-console.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper-console.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper-console.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper-console.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gspawn-win32-helper.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gthread.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gthread.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gthread.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/gthread.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/install.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/install.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/install.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/install.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/testglib.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/testglib.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/testglib.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/build/win32/vs9/testglib.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/compile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/compile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/compile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/compile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.h.win32.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/configure.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/depcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/depcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/depcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/depcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/debugging.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/debugging.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/debugging.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/debugging.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/macros.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/macros.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/macros.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/macros.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-docs.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-docs.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-docs.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-docs.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-overrides.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-overrides.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-overrides.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-overrides.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-sections.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-sections.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-sections.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio-sections.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio.types b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio.types similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio.types rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gio.types diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gvfs-overview.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gvfs-overview.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gvfs-overview.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/gvfs-overview.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAppInfo.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAppInfo.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAppInfo.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAppInfo.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncInitable.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncInitable.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncInitable.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncInitable.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncResult.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncResult.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncResult.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GAsyncResult.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedInputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedInputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedInputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedInputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedOutputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedOutputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedOutputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GBufferedOutputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCancellable.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCancellable.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCancellable.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCancellable.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCharsetConverter.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCharsetConverter.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCharsetConverter.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GCharsetConverter.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GConverter.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GConverter.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GConverter.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GConverter.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataInputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataInputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataInputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataInputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataOutputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataOutputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataOutputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDataOutputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDrive.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDrive.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDrive.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GDrive.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblem.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblem.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblem.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblem.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblemedIcon.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblemedIcon.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblemedIcon.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GEmblemedIcon.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFile.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFile.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFile.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFile.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileDescriptorBased.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileDescriptorBased.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileDescriptorBased.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileDescriptorBased.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileEnumerator.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileEnumerator.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileEnumerator.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileEnumerator.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIOStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIOStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIOStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIOStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIcon.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIcon.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIcon.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileIcon.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInfo.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInfo.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInfo.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInfo.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileInputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileMonitor.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileMonitor.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileMonitor.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileMonitor.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileOutputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileOutputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileOutputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFileOutputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilenameCompleter.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilenameCompleter.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilenameCompleter.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilenameCompleter.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterInputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterInputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterInputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterInputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterOutputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterOutputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterOutputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GFilterOutputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOModule.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOModule.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOModule.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOModule.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIOStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIcon.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIcon.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIcon.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GIcon.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetAddress.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetAddress.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetAddress.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetAddress.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetSocketAddress.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetSocketAddress.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetSocketAddress.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInetSocketAddress.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInitable.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInitable.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInitable.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInitable.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GInputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GLoadableIcon.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GLoadableIcon.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GLoadableIcon.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GLoadableIcon.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryInputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryInputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryInputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryInputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryOutputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryOutputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryOutputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMemoryOutputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMount.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMount.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMount.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMount.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMountOperation.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMountOperation.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMountOperation.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GMountOperation.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkAddress.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkAddress.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkAddress.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkAddress.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkService.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkService.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkService.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GNetworkService.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GOutputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GOutputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GOutputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GOutputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GResolver.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GResolver.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GResolver.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GResolver.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSeekable.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSeekable.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSeekable.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSeekable.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSimpleAsyncResult.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSimpleAsyncResult.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSimpleAsyncResult.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSimpleAsyncResult.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocket.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocket.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocket.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocket.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketAddress.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketAddress.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketAddress.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketAddress.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketClient.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketClient.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketClient.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketClient.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnectable.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnectable.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnectable.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnectable.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnection.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnection.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnection.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketConnection.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketControlMessage.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketControlMessage.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketControlMessage.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketControlMessage.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketListener.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketListener.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketListener.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketListener.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketService.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketService.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketService.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GSocketService.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThemedIcon.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThemedIcon.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThemedIcon.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThemedIcon.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThreadedSocketService.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThreadedSocketService.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThreadedSocketService.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GThreadedSocketService.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDList.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDList.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDList.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDList.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDMessage.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDMessage.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDMessage.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixFDMessage.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixInputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixInputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixInputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixInputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixOutputStream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixOutputStream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixOutputStream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixOutputStream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixSocketAddress.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixSocketAddress.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixSocketAddress.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GUnixSocketAddress.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVfs.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVfs.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVfs.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVfs.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolume.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolume.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolume.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolume.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolumeMonitor.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolumeMonitor.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolumeMonitor.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GVolumeMonitor.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibCompressor.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibCompressor.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibCompressor.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibCompressor.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibDecompressor.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibDecompressor.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibDecompressor.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/GZlibDecompressor.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-18.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-18.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-18.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-18.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-20.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-20.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-20.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-20.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-22.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-22.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-22.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-22.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-24.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-24.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-24.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-2-24.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-deprecated.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-deprecated.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-deprecated.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-deprecated.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-full.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-full.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-full.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/api-index-full.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/async.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/async.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/async.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/async.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch01.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch01.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch01.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch01.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch03.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch03.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch03.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch03.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch19.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch19.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch19.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch19.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s03.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s03.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s03.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/ch20s03.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/conversion.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/conversion.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/conversion.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/conversion.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending-gio.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending-gio.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending-gio.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending-gio.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/extending.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/failable_initialization.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/failable_initialization.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/failable_initialization.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/failable_initialization.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_mon.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_mon.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_mon.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_mon.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_ops.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_ops.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_ops.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/file_ops.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Extension-Points.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Extension-Points.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Extension-Points.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Extension-Points.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GContentType.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GContentType.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GContentType.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GContentType.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterInputstream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterInputstream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterInputstream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterInputstream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterOutputstream.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterOutputstream.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterOutputstream.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GConverterOutputstream.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GFileAttribute.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GFileAttribute.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GFileAttribute.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GFileAttribute.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOError.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOError.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOError.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOError.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOScheduler.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOScheduler.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOScheduler.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GIOScheduler.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GSrvTarget.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GSrvTarget.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GSrvTarget.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-GSrvTarget.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Unix-Mounts.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Unix-Mounts.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Unix-Mounts.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-Unix-Mounts.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-hierarchy.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-hierarchy.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-hierarchy.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio-hierarchy.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gio.devhelp2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gvfs-overview.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gvfs-overview.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gvfs-overview.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/gvfs-overview.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/highlevel-socket.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/highlevel-socket.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/highlevel-socket.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/highlevel-socket.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/home.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/home.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/home.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/home.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/icons.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/icons.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/icons.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/icons.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/index.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/left.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/left.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/left.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/left.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/migrating.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/migrating.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/migrating.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/migrating.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/networking.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/networking.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/networking.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/networking.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt01.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt01.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt01.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt01.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/pt02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/resolver.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/resolver.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/resolver.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/resolver.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/right.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/right.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/right.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/right.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/streaming.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/streaming.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/streaming.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/streaming.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/style.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/style.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/style.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/style.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/types.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/types.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/types.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/types.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/up.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/up.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/up.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/up.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/utils.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/utils.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/utils.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/utils.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/volume_mon.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/volume_mon.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/volume_mon.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/html/volume_mon.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/migrating.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/migrating.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/migrating.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/migrating.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/overview.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/overview.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/overview.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/overview.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/extensionpoints.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/extensionpoints.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/extensionpoints.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/extensionpoints.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gappinfo.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gappinfo.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gappinfo.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gappinfo.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncinitable.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncinitable.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncinitable.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncinitable.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncresult.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncresult.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncresult.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gasyncresult.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedinputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedinputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedinputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedinputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedoutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedoutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedoutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gbufferedoutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcancellable.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcancellable.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcancellable.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcancellable.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcharsetconverter.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcharsetconverter.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcharsetconverter.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcharsetconverter.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcontenttype.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcontenttype.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcontenttype.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gcontenttype.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverter.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverter.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverter.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverter.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverterinputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverterinputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverterinputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverterinputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverteroutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverteroutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverteroutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gconverteroutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdatainputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdatainputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdatainputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdatainputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdataoutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdataoutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdataoutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdataoutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdesktopappinfo.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdesktopappinfo.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdesktopappinfo.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdesktopappinfo.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdrive.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdrive.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdrive.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gdrive.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblem.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblem.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblem.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblem.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblemedicon.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblemedicon.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblemedicon.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gemblemedicon.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfile.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfile.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfile.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfile.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileattribute.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileattribute.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileattribute.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileattribute.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfiledescriptorbased.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfiledescriptorbased.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfiledescriptorbased.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfiledescriptorbased.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileenumerator.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileenumerator.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileenumerator.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileenumerator.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileicon.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileicon.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileicon.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileicon.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinfo.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinfo.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinfo.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinfo.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileinputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileiostream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileiostream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileiostream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileiostream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilemonitor.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilemonitor.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilemonitor.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilemonitor.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilenamecompleter.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilenamecompleter.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilenamecompleter.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilenamecompleter.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileoutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileoutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileoutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfileoutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilterinputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilterinputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilterinputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilterinputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilteroutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilteroutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilteroutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gfilteroutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gicon.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gicon.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gicon.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gicon.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetaddress.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetaddress.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetaddress.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetaddress.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetsocketaddress.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetsocketaddress.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetsocketaddress.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginetsocketaddress.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginitable.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginitable.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginitable.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginitable.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/ginputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gio-unused.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gio-unused.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gio-unused.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gio-unused.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioerror.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioerror.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioerror.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioerror.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giomodule.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giomodule.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giomodule.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giomodule.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioscheduler.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioscheduler.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioscheduler.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gioscheduler.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giostream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giostream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giostream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/giostream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gloadableicon.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gloadableicon.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gloadableicon.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gloadableicon.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryinputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryinputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryinputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryinputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryoutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryoutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryoutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmemoryoutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmount.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmount.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmount.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmount.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmountoperation.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmountoperation.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmountoperation.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gmountoperation.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkaddress.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkaddress.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkaddress.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkaddress.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkservice.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkservice.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkservice.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gnetworkservice.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/goutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/goutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/goutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/goutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gresolver.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gresolver.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gresolver.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gresolver.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gseekable.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gseekable.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gseekable.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gseekable.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsimpleasyncresult.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsimpleasyncresult.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsimpleasyncresult.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsimpleasyncresult.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocket.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocket.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocket.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocket.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketaddress.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketaddress.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketaddress.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketaddress.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketclient.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketclient.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketclient.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketclient.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnectable.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnectable.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnectable.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnectable.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnection.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnection.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnection.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketconnection.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketcontrolmessage.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketcontrolmessage.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketcontrolmessage.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketcontrolmessage.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketlistener.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketlistener.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketlistener.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketlistener.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketservice.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketservice.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketservice.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsocketservice.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsrvtarget.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsrvtarget.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsrvtarget.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gsrvtarget.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthemedicon.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthemedicon.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthemedicon.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthemedicon.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthreadedsocketservice.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthreadedsocketservice.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthreadedsocketservice.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gthreadedsocketservice.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdlist.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdlist.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdlist.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdlist.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdmessage.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdmessage.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdmessage.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixfdmessage.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixinputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixinputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixinputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixinputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixmounts.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixmounts.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixmounts.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixmounts.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixoutputstream.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixoutputstream.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixoutputstream.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixoutputstream.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixsocketaddress.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixsocketaddress.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixsocketaddress.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gunixsocketaddress.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvfs.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvfs.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvfs.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvfs.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolume.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolume.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolume.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolume.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolumemonitor.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolumemonitor.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolumemonitor.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gvolumemonitor.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzcompressor.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzcompressor.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzcompressor.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzcompressor.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzdecompressor.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzdecompressor.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzdecompressor.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/tmpl/gzdecompressor.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gio/version.xml.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/building.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/building.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/building.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/building.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/changes.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/changes.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/changes.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/changes.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/compiling.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/compiling.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/compiling.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/compiling.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/cross.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/cross.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/cross.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/cross.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.sxd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.sxd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.sxd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/file-name-encodings.sxd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-docs.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-docs.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-docs.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-docs.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-gettextize.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-overrides.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-overrides.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-overrides.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-overrides.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-sections.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-sections.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-sections.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib-sections.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib.types b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib.types similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib.types rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/glib.types diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester-report.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gtester.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gvariant-varargs.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gvariant-varargs.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gvariant-varargs.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/gvariant-varargs.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-10.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-10.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-10.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-10.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-12.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-12.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-12.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-12.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-14.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-14.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-14.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-14.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-16.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-16.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-16.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-16.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-18.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-18.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-18.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-18.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-20.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-20.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-20.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-20.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-22.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-22.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-22.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-22.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-24.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-24.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-24.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-24.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-6.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-6.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-6.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-6.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-8.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-8.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-8.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-2-8.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-deprecated.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-deprecated.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-deprecated.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-deprecated.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-full.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-full.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-full.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/api-index-full.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/file-name-encodings.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/file-name-encodings.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/file-name-encodings.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/file-name-encodings.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Arrays.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Arrays.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Arrays.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Arrays.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Asynchronous-Queues.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Asynchronous-Queues.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Asynchronous-Queues.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Asynchronous-Queues.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Atomic-Operations.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Atomic-Operations.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Atomic-Operations.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Atomic-Operations.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Automatic-String-Completion.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Automatic-String-Completion.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Automatic-String-Completion.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Automatic-String-Completion.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Balanced-Binary-Trees.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Balanced-Binary-Trees.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Balanced-Binary-Trees.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Balanced-Binary-Trees.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Base64-Encoding.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Base64-Encoding.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Base64-Encoding.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Base64-Encoding.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Basic-Types.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Basic-Types.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Basic-Types.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Basic-Types.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Bookmark-file-parser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Bookmark-file-parser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Bookmark-file-parser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Bookmark-file-parser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Arrays.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Arrays.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Arrays.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Arrays.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Order-Macros.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Order-Macros.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Order-Macros.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Byte-Order-Macros.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Caches.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Caches.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Caches.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Caches.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Character-Set-Conversion.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Character-Set-Conversion.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Character-Set-Conversion.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Character-Set-Conversion.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Commandline-option-parser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Commandline-option-parser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Commandline-option-parser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Commandline-option-parser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Data-Checksums.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Data-Checksums.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Data-Checksums.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Data-Checksums.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Datasets.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Datasets.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Datasets.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Datasets.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Date-and-Time-Functions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Date-and-Time-Functions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Date-and-Time-Functions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Date-and-Time-Functions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Double-ended-Queues.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Double-ended-Queues.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Double-ended-Queues.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Double-ended-Queues.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Doubly-Linked-Lists.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Doubly-Linked-Lists.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Doubly-Linked-Lists.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Doubly-Linked-Lists.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Dynamic-Loading-of-Modules.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Dynamic-Loading-of-Modules.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Dynamic-Loading-of-Modules.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Dynamic-Loading-of-Modules.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Error-Reporting.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Error-Reporting.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Error-Reporting.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Error-Reporting.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-File-Utilities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-File-Utilities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-File-Utilities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-File-Utilities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariant.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariant.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariant.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariant.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariantType.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariantType.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariantType.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-GVariantType.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Glob-style-pattern-matching.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Glob-style-pattern-matching.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Glob-style-pattern-matching.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Glob-style-pattern-matching.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hash-Tables.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hash-Tables.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hash-Tables.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hash-Tables.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hook-Functions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hook-Functions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hook-Functions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hook-Functions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hostname-Utilities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hostname-Utilities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hostname-Utilities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Hostname-Utilities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-I18N.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-I18N.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-I18N.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-I18N.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-IO-Channels.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-IO-Channels.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-IO-Channels.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-IO-Channels.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Key-value-file-parser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Key-value-file-parser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Key-value-file-parser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Key-value-file-parser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Keyed-Data-Lists.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Keyed-Data-Lists.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Keyed-Data-Lists.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Keyed-Data-Lists.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Lexical-Scanner.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Lexical-Scanner.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Lexical-Scanner.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Lexical-Scanner.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Limits-of-Basic-Types.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Limits-of-Basic-Types.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Limits-of-Basic-Types.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Limits-of-Basic-Types.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocation.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocation.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocation.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocation.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocators.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocators.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocators.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Allocators.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Chunks.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Chunks.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Chunks.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Chunks.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Slices.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Slices.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Slices.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Memory-Slices.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Message-Logging.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Message-Logging.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Message-Logging.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Message-Logging.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Macros.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Macros.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Macros.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Macros.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-N-ary-Trees.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-N-ary-Trees.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-N-ary-Trees.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-N-ary-Trees.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Numerical-Definitions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Numerical-Definitions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Numerical-Definitions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Numerical-Definitions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Perl-compatible-regular-expressions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Perl-compatible-regular-expressions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Perl-compatible-regular-expressions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Perl-compatible-regular-expressions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Pointer-Arrays.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Pointer-Arrays.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Pointer-Arrays.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Pointer-Arrays.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Quarks.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Quarks.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Quarks.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Quarks.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Random-Numbers.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Random-Numbers.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Random-Numbers.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Random-Numbers.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Relations-and-Tuples.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Relations-and-Tuples.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Relations-and-Tuples.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Relations-and-Tuples.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Sequences.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Sequences.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Sequences.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Sequences.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Shell-related-Utilities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Shell-related-Utilities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Shell-related-Utilities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Shell-related-Utilities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Simple-XML-Subset-Parser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Simple-XML-Subset-Parser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Simple-XML-Subset-Parser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Simple-XML-Subset-Parser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Singly-Linked-Lists.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Singly-Linked-Lists.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Singly-Linked-Lists.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Singly-Linked-Lists.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Spawning-Processes.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Spawning-Processes.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Spawning-Processes.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Spawning-Processes.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Standard-Macros.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Standard-Macros.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Standard-Macros.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Standard-Macros.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Chunks.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Chunks.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Chunks.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Chunks.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Utility-Functions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Utility-Functions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Utility-Functions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-String-Utility-Functions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Strings.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Strings.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Strings.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Strings.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Testing.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Testing.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Testing.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Testing.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-The-Main-Event-Loop.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-The-Main-Event-Loop.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-The-Main-Event-Loop.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-The-Main-Event-Loop.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Thread-Pools.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Thread-Pools.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Thread-Pools.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Thread-Pools.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Threads.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Threads.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Threads.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Threads.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Timers.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Timers.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Timers.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Timers.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Trash-Stacks.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Trash-Stacks.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Trash-Stacks.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Trash-Stacks.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Type-Conversion-Macros.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Type-Conversion-Macros.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Type-Conversion-Macros.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Type-Conversion-Macros.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-URI-Functions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-URI-Functions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-URI-Functions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-URI-Functions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Unicode-Manipulation.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Unicode-Manipulation.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Unicode-Manipulation.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Unicode-Manipulation.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Version-Information.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Version-Information.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Version-Information.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Version-Information.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Warnings-and-Assertions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Warnings-and-Assertions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Warnings-and-Assertions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Warnings-and-Assertions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-building.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-building.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-building.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-building.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-changes.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-changes.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-changes.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-changes.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-compiling.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-compiling.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-compiling.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-compiling.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-core.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-core.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-core.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-core.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-cross-compiling.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-cross-compiling.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-cross-compiling.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-cross-compiling.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-data-types.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-data-types.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-data-types.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-data-types.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-fundamentals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-fundamentals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-fundamentals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-fundamentals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-gettextize.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-gettextize.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-gettextize.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-gettextize.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-regex-syntax.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-regex-syntax.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-regex-syntax.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-regex-syntax.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-resources.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-resources.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-resources.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-resources.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-running.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-running.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-running.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-running.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-utilities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-utilities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-utilities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib-utilities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.devhelp2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/glib.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester-report.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester-report.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester-report.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester-report.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gtester.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gvariant-format-strings.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gvariant-format-strings.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gvariant-format-strings.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/gvariant-format-strings.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/home.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/home.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/home.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/home.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/index.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/left.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/left.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/left.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/left.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/mainloop-states.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/mainloop-states.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/mainloop-states.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/mainloop-states.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/right.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/right.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/right.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/right.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/style.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/style.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/style.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/style.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/tools.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/tools.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/tools.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/tools.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/up.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/up.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/up.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/html/up.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.fig b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.fig similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.fig rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.fig diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/mainloop-states.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/regex-syntax.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/regex-syntax.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/regex-syntax.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/regex-syntax.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/resources.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/resources.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/resources.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/resources.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/running.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/running.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/running.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/running.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/allocators.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/allocators.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/allocators.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/allocators.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_byte.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_byte.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_byte.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_byte.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_pointer.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_pointer.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_pointer.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/arrays_pointer.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/async_queues.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/async_queues.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/async_queues.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/async_queues.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/atomic_operations.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/atomic_operations.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/atomic_operations.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/atomic_operations.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/base64.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/base64.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/base64.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/base64.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/bookmarkfile.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/bookmarkfile.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/bookmarkfile.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/bookmarkfile.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/byte_order.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/byte_order.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/byte_order.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/byte_order.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/caches.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/caches.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/caches.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/caches.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/checksum.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/checksum.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/checksum.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/checksum.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/completion.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/completion.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/completion.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/completion.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/conversions.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/conversions.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/conversions.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/conversions.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datalist.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datalist.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datalist.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datalist.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datasets.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datasets.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datasets.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/datasets.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/date.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/date.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/date.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/date.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/error_reporting.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/error_reporting.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/error_reporting.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/error_reporting.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/fileutils.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/fileutils.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/fileutils.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/fileutils.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/ghostutils.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/ghostutils.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/ghostutils.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/ghostutils.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/glib-unused.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/glib-unused.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/glib-unused.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/glib-unused.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gregex.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gregex.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gregex.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gregex.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gurifuncs.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gurifuncs.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gurifuncs.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gurifuncs.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvariant.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvariant.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvariant.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvariant.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvarianttype.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvarianttype.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvarianttype.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/gvarianttype.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hash_tables.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hash_tables.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hash_tables.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hash_tables.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hooks.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hooks.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hooks.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/hooks.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/i18n.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/i18n.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/i18n.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/i18n.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/iochannels.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/iochannels.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/iochannels.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/iochannels.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/keyfile.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/keyfile.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/keyfile.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/keyfile.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/limits.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/limits.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/limits.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/limits.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_double.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_double.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_double.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_double.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_single.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_single.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_single.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/linked_lists_single.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros_misc.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros_misc.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros_misc.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/macros_misc.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/main.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/main.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/main.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/main.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/markup.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/markup.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/markup.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/markup.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_chunks.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_chunks.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_chunks.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_chunks.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_slices.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_slices.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_slices.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/memory_slices.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/messages.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/messages.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/messages.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/messages.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/misc_utils.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/misc_utils.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/misc_utils.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/misc_utils.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/modules.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/modules.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/modules.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/modules.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/numerical.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/numerical.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/numerical.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/numerical.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/option.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/option.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/option.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/option.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/patterns.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/patterns.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/patterns.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/patterns.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/quarks.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/quarks.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/quarks.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/quarks.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/queue.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/queue.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/queue.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/queue.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/random_numbers.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/random_numbers.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/random_numbers.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/random_numbers.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/relations.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/relations.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/relations.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/relations.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/scanner.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/scanner.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/scanner.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/scanner.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/sequence.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/sequence.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/sequence.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/sequence.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/shell.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/shell.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/shell.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/shell.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/spawn.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/spawn.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/spawn.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/spawn.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_chunks.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_chunks.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_chunks.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_chunks.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_utils.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_utils.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_utils.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/string_utils.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/strings.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/strings.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/strings.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/strings.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/testing.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/testing.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/testing.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/testing.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/thread_pools.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/thread_pools.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/thread_pools.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/thread_pools.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/threads.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/threads.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/threads.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/threads.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/timers.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/timers.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/timers.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/timers.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trash_stack.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trash_stack.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trash_stack.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trash_stack.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-binary.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-binary.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-binary.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-binary.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-nary.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-nary.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-nary.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/trees-nary.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/type_conversion.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/type_conversion.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/type_conversion.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/type_conversion.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/types.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/types.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/types.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/types.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/unicode.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/unicode.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/unicode.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/unicode.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/version.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/version.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/version.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/version.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/warnings.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/warnings.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/warnings.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/warnings.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/windows.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/windows.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/windows.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/tmpl/windows.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/glib/version.xml.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-genmarshal.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/glib-mkenums.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-docs.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-docs.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-docs.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-docs.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-overrides.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-overrides.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-overrides.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-overrides.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-query.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-sections.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-sections.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-sections.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject-sections.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.cI b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.cI similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.cI rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.cI diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.types b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.types similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.types rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/gobject.types diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypeModule.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypeModule.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypeModule.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypeModule.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypePlugin.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypePlugin.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypePlugin.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/GTypePlugin.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-10.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-10.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-10.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-10.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-12.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-12.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-12.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-12.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-14.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-14.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-14.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-14.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-18.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-18.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-18.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-18.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-22.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-22.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-22.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-22.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-24.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-24.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-24.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-24.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-6.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-6.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-6.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-6.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-8.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-8.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-8.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-2-8.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-deprecated.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-deprecated.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-deprecated.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-deprecated.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-full.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-full.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-full.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/api-index-full.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch01s02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch01s02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch01s02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch01s02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch06s03.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch06s03.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch06s03.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/ch06s03.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gobject.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gobject.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gobject.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gobject.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gtype.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gtype.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gtype.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-gtype.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-intro.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-intro.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-intro.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-intro.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-signal.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-signal.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-signal.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/chapter-signal.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-genmarshal.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-genmarshal.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-genmarshal.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-genmarshal.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-mkenums.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-mkenums.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-mkenums.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glib-mkenums.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glue.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glue.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glue.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/glue.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Boxed-Types.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Boxed-Types.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Boxed-Types.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Boxed-Types.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Closures.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Closures.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Closures.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Closures.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-GParamSpec.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-GParamSpec.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-GParamSpec.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-GParamSpec.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Generic-values.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Generic-values.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Generic-values.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Generic-values.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Signals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Signals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Signals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Signals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-The-Base-Object-Type.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-The-Base-Object-Type.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-The-Base-Object-Type.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-The-Base-Object-Type.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Type-Information.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Type-Information.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Type-Information.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Type-Information.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Value-arrays.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Value-arrays.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Value-arrays.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Value-arrays.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-memory.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-memory.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-memory.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-memory.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-properties.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-properties.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-properties.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-properties.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-query.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-query.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-query.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject-query.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gobject.devhelp2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-conventions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-conventions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-conventions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-conventions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-instantiable-classed.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-instantiable-classed.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-instantiable-classed.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-instantiable-classed.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable-classed.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable-classed.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable-classed.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable-classed.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/gtype-non-instantiable.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/home.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/home.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/home.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/home.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-chainup.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-chainup.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-chainup.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-chainup.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-code.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-code.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-code.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-code.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-construction.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-construction.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-construction.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-construction.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-destruction.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-destruction.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-destruction.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-destruction.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-methods.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-methods.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-methods.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject-methods.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-gobject.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-implement.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-implement.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-implement.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-implement.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-properties.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-properties.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-properties.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface-properties.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-interface.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-signals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-signals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-signals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/howto-signals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/index.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/left.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/left.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/left.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/left.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pr01.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pr01.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pr01.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pr01.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt01.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt01.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt01.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt01.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt03.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt03.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt03.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/pt03.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/right.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/right.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/right.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/right.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn01.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn01.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn01.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn01.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/rn02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/signal.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/signal.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/signal.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/signal.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/style.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/style.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/style.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/style.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-ginspector.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-ginspector.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-ginspector.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-ginspector.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gob.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gob.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gob.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gob.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gtkdoc.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gtkdoc.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gtkdoc.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-gtkdoc.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-refdb.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-refdb.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-refdb.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-refdb.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-vala.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-vala.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-vala.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/tools-vala.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/up.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/up.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/up.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/html/up.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/images/glue.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/images/glue.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/images/glue.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/images/glue.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/enumerations_flags.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/enumerations_flags.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/enumerations_flags.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/enumerations_flags.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gboxed.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gboxed.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gboxed.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gboxed.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gclosure.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gclosure.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gclosure.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gclosure.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/generic_values.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/generic_values.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/generic_values.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/generic_values.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gobject-unused.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gobject-unused.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gobject-unused.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gobject-unused.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gparamspec.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gparamspec.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gparamspec.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gparamspec.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtype.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtype.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtype.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtype.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypemodule.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypemodule.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypemodule.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypemodule.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypeplugin.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypeplugin.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypeplugin.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/gtypeplugin.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/objects.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/objects.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/objects.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/objects.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/param_value_types.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/param_value_types.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/param_value_types.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/param_value_types.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/signals.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/signals.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/signals.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/signals.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_arrays.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_arrays.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_arrays.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_arrays.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_collection.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_collection.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_collection.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tmpl/value_collection.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gobject.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gobject.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gobject.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gobject.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gsignal.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gsignal.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gsignal.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gsignal.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gtype.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gtype.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gtype.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_gtype.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_howto.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_howto.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_howto.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_howto.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_intro.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_intro.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_intro.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_intro.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_tools.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_tools.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_tools.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/tut_tools.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/docs/reference/gobject/version.xml.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio-unix-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/abicheck.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/abicheck.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/abicheck.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/abicheck.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-helper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-module.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-module.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-module.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/fam-module.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamdirectorymonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fam/gfamfilemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-data.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-dump.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-helper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-kernel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-missing.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-node.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/fen-sub.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfendirectorymonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/fen/gfenfilemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gappinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasynchelper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncinitable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gasyncresult.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gbufferedoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcancellable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcharsetconverter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttype.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttypeprivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttypeprivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttypeprivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gcontenttypeprivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverterinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gconverteroutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdatainputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdataoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdesktopappinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdrive.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gdummyfile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gemblemedicon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute-priv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute-priv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute-priv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute-priv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileattribute.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfiledescriptorbased.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileenumerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileicon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo-priv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo-priv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo-priv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo-priv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileiostream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilenamecompleter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfileoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilterinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gfilteroutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gicon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetaddress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginetsocketaddress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginitable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/ginputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.list b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.list similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.list rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-marshal.list diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-querymodules.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-querymodules.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-querymodules.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio-querymodules.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.rc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.symbols b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.symbols similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.symbols rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gio.symbols diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioalias.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioalias.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioalias.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioalias.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioaliasdef.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioaliasdef.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioaliasdef.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioaliasdef.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenums.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenums.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenums.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenums.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c.template b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c.template similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c.template rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.c.template diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h.template b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h.template similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h.template rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioenumtypes.h.template diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioerror.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule-priv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule-priv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule-priv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule-priv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giomodule.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gioscheduler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giostream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giotypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giotypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giotypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/giotypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gloadableicon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocaldirectorymonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileenumerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileiostream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfilemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalfileoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/glocalvfs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmemoryoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmount.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountoperation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountprivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountprivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountprivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gmountprivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnativevolumemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkaddress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkingprivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkingprivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkingprivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkingprivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gnetworkservice.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/goutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gpollfilemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gresolver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gseekable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsimpleasyncresult.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocket.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketaddressenumerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketclient.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnectable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketconnection.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketcontrolmessage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketlistener.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsocketservice.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gsrvtarget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gtcpconnection.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthemedicon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedresolver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gthreadedsocketservice.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunionvolumemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixconnection.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdlist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixfdmessage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmount.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixmounts.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixresolver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixsocketaddress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolume.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gunixvolumemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvfs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolume.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gvolumemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32appinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32mount.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32resolver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gwin32volumemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibcompressor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/gzlibdecompressor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifydirectorymonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/ginotifyfilemonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-diag.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-helper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-kernel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-missing.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-path.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/inotify/inotify-sub.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/asyncns.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/g-asyncns.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/g-asyncns.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/g-asyncns.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/g-asyncns.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/update.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/update.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/update.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/libasyncns/update.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makegioalias.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makegioalias.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makegioalias.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/makegioalias.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/pltcheck.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/pltcheck.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/pltcheck.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/pltcheck.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/buffered-input-stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/buffered-input-stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/buffered-input-stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/buffered-input-stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/contexts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/contexts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/contexts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/contexts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/converter-stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/converter-stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/converter-stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/converter-stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-input-stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-input-stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-input-stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-input-stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-output-stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-output-stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-output-stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/data-output-stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/desktop-app-info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/desktop-app-info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/desktop-app-info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/desktop-app-info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/echo-server.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/echo-server.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/echo-server.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/echo-server.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-cat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-cat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-cat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-cat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-streams.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-streams.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-streams.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/filter-streams.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file-info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file-info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file-info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file-info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-icon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-icon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-icon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/g-icon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/httpd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/httpd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/httpd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/httpd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/live-g-file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/live-g-file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/live-g-file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/live-g-file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-input-stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-input-stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-input-stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-input-stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-output-stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-output-stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-output-stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/memory-output-stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/readwrite.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/readwrite.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/readwrite.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/readwrite.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/resolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/resolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/resolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/resolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/send-data.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/send-data.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/send-data.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/send-data.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/simple-async-result.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/simple-async-result.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/simple-async-result.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/simple-async-result.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/sleepy-stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/sleepy-stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/sleepy-stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/sleepy-stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-client.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-client.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-client.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-client.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-server.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-server.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-server.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/socket-server.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/srvtarget.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/srvtarget.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/srvtarget.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/srvtarget.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-fd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-fd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-fd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-fd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-streams.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-streams.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-streams.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/tests/unix-streams.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwin32directorymonitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileinputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpfileoutputstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/gwinhttpvfs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/winhttp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/winhttp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/winhttp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/win32/winhttp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmime.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimealias.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimecache.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeglob.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeicon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimemagic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gio/xdgmime/xdgmimeparent.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-gettextize.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-gettextize.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-gettextize.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-gettextize.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-zip.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-zip.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-zip.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib-zip.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/abicheck.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/abicheck.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/abicheck.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/abicheck.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galias.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galias.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galias.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galias.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galiasdef.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galiasdef.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galiasdef.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galiasdef.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galloca.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galloca.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galloca.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/galloca.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/garray.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gasyncqueue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic-gcc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic-gcc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic-gcc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic-gcc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gatomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbacktrace.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbase64.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbitlock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbookmarkfile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbsearcharray.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbsearcharray.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbsearcharray.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbsearcharray.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gbuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcache.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gchecksum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gcompletion.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gconvert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdataset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdatasetprivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdatasetprivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdatasetprivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdatasetprivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdebug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdebug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdebug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdebug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gdir.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-script-table.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-script-table.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-script-table.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-script-table.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-unicode-tables.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-unicode-tables.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-unicode-tables.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gen-unicode-tables.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gerror.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gfileutils.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghook.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/ghostutils.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n-lib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n-lib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n-lib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n-lib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gi18n.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giochannel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giounix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giounix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giounix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giounix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giowin32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giowin32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giowin32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/giowin32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gkeyfile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/gen-mirroring-tab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/gen-mirroring-tab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/gen-mirroring-tab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/gen-mirroring-tab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-mirroring-tab/packtab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-object.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-object.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-object.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib-object.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.rc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.symbols b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.symbols similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.symbols rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glib.symbols diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glibintl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glibintl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glibintl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glibintl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/glist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmacros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmacros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmacros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmacros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmain.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmappedfile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmarkup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmessages.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmirroringtable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmirroringtable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmirroringtable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gmirroringtable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnode.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/asnprintf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/asnprintf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/asnprintf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/asnprintf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/g-gnulib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/g-gnulib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/g-gnulib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/g-gnulib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-args.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf-parse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/printf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gnulib/vasnprintf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/goption.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpattern.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gpoll.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprimes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintfint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintfint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintfint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gprintfint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqsort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gquark.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gquark.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gquark.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gquark.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gqueue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gregex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/grel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscanner.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscripttable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscripttable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscripttable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gscripttable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gsequence.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gshell.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslice.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gslist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper-console.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper-console.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper-console.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper-console.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32-helper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper-console.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper-console.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper-console.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper-console.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn-win64-helper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gspawn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstdio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstrfuncs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gstring.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester-report b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester-report similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester-report rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester-report diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtester.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtestutils.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadpool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadprivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadprivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadprivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gthreadprivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtimer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gtypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunibreak.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunichartables.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunichartables.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunichartables.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunichartables.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicode.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicode.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicode.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicode.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicodeprivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicodeprivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicodeprivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicodeprivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicollate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicollate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicollate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicollate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicomp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicomp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicomp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunicomp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gunidecomp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/guniprop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/guniprop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/guniprop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/guniprop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gurifuncs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutf8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutf8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutf8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutf8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gutils.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-core.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-parser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-parser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-parser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-parser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant-serialiser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvariant.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttype.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gvarianttypeinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/gwin32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/codeset.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/codeset.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/codeset.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/codeset.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/config.charset b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/config.charset similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/config.charset rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/config.charset diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/glibc21.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/glibc21.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/glibc21.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/glibc21.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset-glib.patch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset-glib.patch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset-glib.patch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset-glib.patch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/libcharset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/localcharset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/make-patch.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/make-patch.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/make-patch.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/make-patch.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-add.sin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-add.sin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-add.sin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-add.sin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-del.sin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-del.sin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-del.sin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/ref-del.sin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/update.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/update.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/update.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libcharset/update.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libglib-gdb.py.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libglib-gdb.py.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libglib-gdb.py.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/libglib-gdb.py.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makefile.msc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makegalias.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makegalias.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makegalias.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/makegalias.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_chartables.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_chartables.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_chartables.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_chartables.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_compile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_compile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_compile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_compile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_config.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_config.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_config.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_config.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_dfa_exec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_dfa_exec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_dfa_exec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_dfa_exec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_exec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_exec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_exec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_exec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_fullinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_fullinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_fullinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_fullinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_get.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_get.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_get.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_get.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_globals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_globals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_globals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_globals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_maketables.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_maketables.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_maketables.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_maketables.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_newline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_newline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_newline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_newline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ord2utf8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ord2utf8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ord2utf8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ord2utf8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_refcount.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_refcount.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_refcount.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_refcount.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_study.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_study.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_study.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_study.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_tables.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_tables.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_tables.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_tables.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_try_flipped.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_try_flipped.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_try_flipped.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_try_flipped.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ucp_searchfuncs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ucp_searchfuncs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ucp_searchfuncs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_ucp_searchfuncs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_valid_utf8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_valid_utf8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_valid_utf8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_valid_utf8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_version.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_version.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_version.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_version.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_xclass.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_xclass.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_xclass.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/pcre_xclass.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucpinternal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucpinternal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucpinternal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pcre/ucpinternal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pltcheck.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pltcheck.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pltcheck.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/pltcheck.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/4096-random-bytes b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/4096-random-bytes similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/4096-random-bytes rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/4096-random-bytes diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/array-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/array-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/array-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/array-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/fileutils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/fileutils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/fileutils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/fileutils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/gvariant.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/gvariant.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/gvariant.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/gvariant.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/hostutils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/hostutils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/hostutils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/hostutils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/keyfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/keyfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/keyfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/keyfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/markup-subparser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/markup-subparser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/markup-subparser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/markup-subparser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/mem-overflow.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/mem-overflow.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/mem-overflow.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/mem-overflow.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/option-context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/option-context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/option-context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/option-context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/printf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/printf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/printf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/printf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/strfuncs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/strfuncs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/strfuncs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/strfuncs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/string.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/string.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/string.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/string.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/testing.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/testing.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/testing.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/tests/testing.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.am-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/digitab.patch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/digitab.patch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/digitab.patch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/digitab.patch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/memory.patch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/memory.patch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/memory.patch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/memory.patch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_ucp_searchfuncs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_ucp_searchfuncs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_ucp_searchfuncs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_ucp_searchfuncs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_valid_utf8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_valid_utf8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_valid_utf8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/pcre_valid_utf8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/update.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/update.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/update.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/update-pcre/update.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/win_iconv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/win_iconv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/win_iconv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glib/win_iconv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/glibconfig.h.win32.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-export-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-export-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-export-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-export-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule-no-export-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-ar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-ar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-ar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-ar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-beos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-beos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-beos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-beos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dld.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dld.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dld.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dld.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dyld.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dyld.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dyld.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-dyld.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-os2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-os2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-os2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-os2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-win32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-win32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-win32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule-win32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.rc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.symbols b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.symbols similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.symbols rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmodule.symbols diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.win32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.win32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.win32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/gmoduleconf.h.win32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gmodule/makefile.msc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/abicheck.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/abicheck.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/abicheck.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/abicheck.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gatomicarray.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gboxed.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gclosure.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/genums.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-genmarshal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/glib-mkenums.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.list b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.list similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.list rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.list diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.strings b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.strings similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.strings rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gmarshal.strings diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject-query.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject-query.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject-query.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject-query.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.rc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.symbols b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.symbols similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.symbols rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobject.symbols diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectalias.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectalias.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectalias.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectalias.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectaliasdef.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectaliasdef.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectaliasdef.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectaliasdef.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectnotifyqueue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectnotifyqueue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectnotifyqueue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gobjectnotifyqueue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparam.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gparamspecs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsignal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gsourceclosure.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype-private.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype-private.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype-private.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype-private.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtype.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypemodule.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gtypeplugin.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvalue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluearray.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluecollector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluecollector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluecollector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluecollector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetransform.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetransform.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetransform.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetransform.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/gvaluetypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/libgobject-gdb.py.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/libgobject-gdb.py.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/libgobject-gdb.py.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/libgobject-gdb.py.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makefile.msc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makegobjectalias.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makegobjectalias.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makegobjectalias.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/makegobjectalias.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/marshal-genstrings.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/marshal-genstrings.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/marshal-genstrings.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/marshal-genstrings.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/pltcheck.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/pltcheck.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/pltcheck.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/pltcheck.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/stamp-gmarshal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/stamp-gmarshal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/stamp-gmarshal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/stamp-gmarshal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/testgobject.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/testgobject.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/testgobject.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/testgobject.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/dynamictests.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/dynamictests.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/dynamictests.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/dynamictests.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/threadtests.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/threadtests.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/threadtests.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gobject/tests/threadtests.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-impl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-impl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-impl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-impl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-none.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-none.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-none.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-none.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-posix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-posix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-posix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-posix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-win32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-win32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-win32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread-win32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/gthread.rc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/makefile.msc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/1bit-mutex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/1bit-mutex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/1bit-mutex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/1bit-mutex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gthread/tests/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gtk-doc.make b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gtk-doc.make similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gtk-doc.make rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/gtk-doc.make diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-2.0.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-2.0.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-2.0.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-2.0.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-gettext.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-gettext.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-gettext.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/m4macros/glib-gettext.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/mkinstalldirs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/mkinstalldirs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/mkinstalldirs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/mkinstalldirs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/msvc_recommended_pragmas.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/msvc_recommended_pragmas.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/msvc_recommended_pragmas.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/msvc_recommended_pragmas.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/LINGUAS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/LINGUAS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/LINGUAS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/LINGUAS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/Makefile.in.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/Makefile.in.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/Makefile.in.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/Makefile.in.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/POTFILES.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/POTFILES.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/POTFILES.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/POTFILES.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/af.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/am.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ar.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/as.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ast.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/az.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/be@latin.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bg.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bn_IN.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/bs.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ca@valencia.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cs.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/cy.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/da.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/de.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/dz.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/el.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en@shaw.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_CA.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/en_GB.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eo.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/es.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/et.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/eu.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fa.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fi.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/fr.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ga.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gl.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/glib20.pot b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/glib20.pot similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/glib20.pot rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/glib20.pot diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/gu.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/he.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hi.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hr.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hu.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/hy.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/id.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/is.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/it.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ja.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ka.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/kn.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ko.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ku.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lt.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/lv.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mai.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mg.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mk.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ml.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mn.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/mr.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ms.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nb.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nds.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ne.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nl.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/nn.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/oc.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/or.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pa.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pl.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/po2tbl.sed.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/po2tbl.sed.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/po2tbl.sed.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/po2tbl.sed.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ps.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/pt_BR.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ro.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ru.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/rw.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/si.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sk.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sl.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sq.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@ije.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sr@latin.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/sv.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/ta.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/te.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/th.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tl.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tr.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/tt.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/uk.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/vi.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/wa.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/xh.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/yi.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_CN.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_HK.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.gmo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.gmo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.gmo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.gmo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/po/zh_TW.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/sanity_check b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/sanity_check similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/sanity_check rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/sanity_check diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/assert-msg-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/assert-msg-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/assert-msg-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/assert-msg-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/asyncqueue-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/asyncqueue-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/asyncqueue-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/asyncqueue-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/atomic-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/atomic-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/atomic-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/atomic-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/base64-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/base64-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/base64-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/base64-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bit-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bit-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bit-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bit-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarkfile-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarkfile-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarkfile-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarkfile-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-01.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-01.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-01.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-01.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-02.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-02.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-02.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-02.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-03.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-03.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-03.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-03.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-04.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-04.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-04.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-04.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-05.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-05.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-05.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-05.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-06.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-06.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-06.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-06.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-07.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-07.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-07.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-07.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-08.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-08.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-08.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-08.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-09.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-09.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-09.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-09.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-10.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-10.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-10.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-10.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-11.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-11.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-11.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-11.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-12.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-12.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-12.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-12.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-13.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-13.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-13.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-13.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-14.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-14.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-14.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-14.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-15.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-15.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-15.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-15.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-16.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-16.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-16.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-16.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-17.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-17.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-17.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/fail-17.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-01.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-01.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-01.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-01.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-02.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-02.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-02.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-02.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-03.xbel b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-03.xbel similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-03.xbel rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/bookmarks/valid-03.xbel diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casefold.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casefold.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casefold.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casefold.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casemap.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casemap.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casemap.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/casemap.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/checksum-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/checksum-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/checksum-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/checksum-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/child-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/child-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/child-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/child-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.file b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.file similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.file rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.file diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.unicode b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.unicode similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.unicode rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-1.unicode diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.file b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.file similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.file rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.file diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.unicode b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.unicode similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.unicode rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/collate/collate-2.unicode diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/completion-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/completion-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/completion-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/completion-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/convert-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/convert-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/convert-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/convert-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/cxx-test.C b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/cxx-test.C similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/cxx-test.C rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/cxx-test.C diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/date-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/date-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/date-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/date-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/dirname-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/dirname-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/dirname-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/dirname-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/env-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/env-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/env-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/env-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/errorcheck-mutex-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/errorcheck-mutex-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/errorcheck-mutex-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/errorcheck-mutex-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/file-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/file-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/file-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/file-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casefold-txt.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casefold-txt.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casefold-txt.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casefold-txt.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casemap-txt.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casemap-txt.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casemap-txt.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gen-casemap-txt.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gio-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gio-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gio-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gio-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/accumulator.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/accumulator.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/accumulator.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/accumulator.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/defaultiface.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/defaultiface.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/defaultiface.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/defaultiface.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/deftype.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/deftype.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/deftype.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/deftype.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/dynamictype.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/dynamictype.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/dynamictype.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/dynamictype.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/gvalue-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/gvalue-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/gvalue-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/gvalue-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifacecheck.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifacecheck.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifacecheck.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifacecheck.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinherit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinherit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinherit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinherit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceinit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceproperties.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceproperties.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceproperties.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/ifaceproperties.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/override.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/override.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/override.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/override.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/paramspec-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/paramspec-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/paramspec-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/paramspec-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance-threaded.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance-threaded.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance-threaded.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance-threaded.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/performance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/references.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/references.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/references.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/references.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/singleton.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/singleton.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/singleton.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/singleton.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testcommon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testcommon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testcommon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testcommon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.list b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.list similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.list rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmarshal.list diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/gobject/testmodule.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/hash-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/hash-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/hash-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/hash-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test-infile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test-infile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test-infile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test-infile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/iochannel-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_a.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_a.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_a.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_a.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_b.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_b.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_b.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/libmoduletestplugin_b.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/list-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/list-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/list-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/list-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mainloop-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mainloop-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mainloop-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mainloop-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/makefile.msc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mapping-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mapping-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mapping-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/mapping-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-collect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-collect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-collect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-collect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-escape-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-escape-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-escape-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-escape-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markup-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/expected-9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-1.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-1.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-1.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-1.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-10.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-10.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-10.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-10.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-11.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-11.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-11.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-11.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-12.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-12.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-12.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-12.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-13.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-13.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-13.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-13.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-14.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-14.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-14.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-14.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-15.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-15.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-15.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-15.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-16.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-16.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-16.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-16.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-17.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-17.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-17.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-17.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-18.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-18.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-18.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-18.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-19.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-19.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-19.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-19.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-2.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-2.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-2.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-2.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-20.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-20.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-20.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-20.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-21.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-21.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-21.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-21.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-22.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-22.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-22.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-22.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-23.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-23.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-23.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-23.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-24.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-24.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-24.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-24.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-25.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-25.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-25.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-25.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-26.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-26.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-26.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-26.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-27.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-27.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-27.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-27.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-28.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-28.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-28.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-28.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-29.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-29.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-29.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-29.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-3.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-3.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-3.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-3.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-30.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-30.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-30.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-30.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-31.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-31.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-31.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-31.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-32.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-32.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-32.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-32.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-33.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-33.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-33.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-33.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-34.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-34.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-34.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-34.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-35.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-35.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-35.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-35.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-36.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-36.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-36.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-36.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-37.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-37.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-37.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-37.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-38.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-38.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-38.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-38.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-39.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-39.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-39.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-39.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-4.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-4.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-4.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-4.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-40.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-40.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-40.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-40.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-5.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-5.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-5.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-5.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-6.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-6.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-6.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-6.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-7.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-7.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-7.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-7.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-8.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-8.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-8.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-8.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-9.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-9.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-9.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/fail-9.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-1.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-1.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-1.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-1.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-10.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-10.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-10.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-10.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-11.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-11.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-11.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-11.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-2.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-2.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-2.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-2.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-3.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-3.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-3.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-3.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-4.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-4.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-4.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-4.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-5.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-5.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-5.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-5.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-6.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-6.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-6.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-6.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-7.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-7.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-7.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-7.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-8.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-8.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-8.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-8.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-9.gmarkup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-9.gmarkup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-9.gmarkup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/markups/valid-9.gmarkup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/memchunks.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/memchunks.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/memchunks.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/memchunks.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/module-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/module-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/module-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/module-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/node-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/node-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/node-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/node-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/onceinit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/onceinit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/onceinit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/onceinit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/patterntest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/patterntest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/patterntest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/patterntest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/qsort-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/qsort-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/qsort-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/qsort-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/queue-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/queue-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/queue-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/queue-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/closures.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/closures.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/closures.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/closures.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/objects2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/properties2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/signals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/signals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/signals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/refcount/signals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/regex-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/regex-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/regex-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/regex-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/relation-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/relation-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/relation-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/relation-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-assert-msg-test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-assert-msg-test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-assert-msg-test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-assert-msg-test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-bookmark-test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-bookmark-test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-bookmark-test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-bookmark-test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-collate-tests.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-collate-tests.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-collate-tests.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-collate-tests.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-markup-tests.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-markup-tests.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-markup-tests.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/run-markup-tests.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/scannerapi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/scannerapi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/scannerapi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/scannerapi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/sequence-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/sequence-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/sequence-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/sequence-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/shell-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/shell-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/shell-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/shell-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-color.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-color.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-color.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-color.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-concurrent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-concurrent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-concurrent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-concurrent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-threadinit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-threadinit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-threadinit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slice-threadinit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slist-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slist-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slist-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/slist-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test-win32-gui.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test-win32-gui.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test-win32-gui.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test-win32-gui.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/spawn-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdateparser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdateparser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdateparser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testgdateparser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testglib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testglib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testglib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testglib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testingbase64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testingbase64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testingbase64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/testingbase64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/thread-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/thread-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/thread-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/thread-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/threadpool-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/threadpool-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/threadpool-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/threadpool-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-basic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-basic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-basic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-basic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-closure.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-closure.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-closure.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop-closure.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/timeloop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/tree-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/tree-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/tree-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/tree-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/type-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/type-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/type-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/type-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-caseconv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-caseconv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-caseconv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-caseconv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-collate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-collate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-collate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-collate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-encoding.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-encoding.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-encoding.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-encoding.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-normalize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-normalize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-normalize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/unicode-normalize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/uri-test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/uri-test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/uri-test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/uri-test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-pointer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-pointer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-pointer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-pointer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-validate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-validate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-validate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8-validate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/src/tests/utf8.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/glib/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/BUGS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/BUGS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/BUGS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/BUGS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/SUPPORT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/SUPPORT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/SUPPORT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/SUPPORT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/THANKS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/THANKS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/THANKS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/THANKS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/acconfig.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/acconfig.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/acconfig.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/acconfig.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/autogen.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/autogen.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/autogen.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/autogen.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/blas.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/blas.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/blas.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/blas.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas_types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas_types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas_types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/blas/gsl_blas_types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/block_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fprintf_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fprintf_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fprintf_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fprintf_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fwrite_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fwrite_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fwrite_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/fwrite_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_complex_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_block_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_check_range.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_check_range.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_check_range.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/gsl_check_range.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/init_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_io.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_io.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_io.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_io.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_complex_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_io.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_io.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_io.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_io.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/block/test_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/bspline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/bspline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/bspline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/bspline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/gsl_bspline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/gsl_bspline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/gsl_bspline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/gsl_bspline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/bspline/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/caxpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/caxpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/caxpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/caxpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cblas.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cblas.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cblas.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cblas.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ccopy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ccopy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ccopy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ccopy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotc_sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotc_sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotc_sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotc_sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotu_sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotu_sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotu_sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cdotu_sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgerc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgerc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgerc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgerc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgeru.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgeru.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgeru.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cgeru.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cher2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cherk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cherk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cherk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cherk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/chpr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cscal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cscal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cscal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cscal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csscal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csscal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csscal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csscal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cswap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cswap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cswap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/cswap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csymm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csymm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csymm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csymm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyr2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyr2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyr2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyr2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyrk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyrk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyrk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/csyrk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctbsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctpsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ctrsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dasum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dasum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dasum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dasum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/daxpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/daxpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/daxpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/daxpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dcopy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dcopy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dcopy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dcopy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ddot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ddot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ddot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ddot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dgemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dger.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dger.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dger.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dger.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dnrm2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dnrm2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dnrm2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dnrm2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotmg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotmg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotmg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/drotmg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dscal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dscal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dscal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dscal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsdot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsdot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsdot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsdot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dspr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dswap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dswap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dswap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dswap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsymv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyr2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyrk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyrk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyrk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dsyrk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtbsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtpsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dtrsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dzasum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dzasum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dzasum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dzasum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dznrm2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dznrm2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dznrm2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/dznrm2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/gsl_cblas.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/gsl_cblas.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/gsl_cblas.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/gsl_cblas.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/hypot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/hypot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/hypot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/hypot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/icamax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/icamax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/icamax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/icamax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/idamax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/idamax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/idamax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/idamax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/isamax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/isamax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/isamax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/isamax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/izamax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/izamax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/izamax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/izamax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sasum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sasum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sasum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sasum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/saxpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/saxpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/saxpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/saxpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scasum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scasum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scasum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scasum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scnrm2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scnrm2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scnrm2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scnrm2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scopy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scopy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scopy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/scopy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdsdot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdsdot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdsdot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sdsdot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sgemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sger.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sger.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sger.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sger.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/snrm2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/snrm2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/snrm2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/snrm2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_asum_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_axpy_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_copy_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_dot_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gbmv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemm_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gemv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_ger.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_ger.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_ger.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_ger.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gerc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gerc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gerc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_gerc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_geru.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_geru.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_geru.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_geru.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hbmv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hbmv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hbmv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hbmv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hemv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2k.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2k.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2k.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_her2k.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_herk.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_herk.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_herk.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_herk.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpmv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpmv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpmv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpmv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_hpr2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_iamax_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_nrm2_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rot.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rot.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rot.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rot.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotmg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotmg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotmg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_rotmg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_sbmv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_sbmv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_sbmv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_sbmv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c_s.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c_s.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c_s.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_c_s.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_scal_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spmv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spmv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spmv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spmv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_spr2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_swap_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symm_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_symv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syr2k_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_syrk_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbmv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tbsv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpmv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_tpsv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmm_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trmv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsm_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_c.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_c.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_c.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_c.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/source_trsv_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotmg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotmg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotmg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/srotmg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sscal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sscal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sscal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sscal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sspr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sswap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sswap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sswap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/sswap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssymv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyr2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyrk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyrk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyrk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ssyrk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stbsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/stpsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/strsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_amax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_amax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_amax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_amax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_asum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_asum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_asum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_asum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_axpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_axpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_axpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_axpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_dot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_dot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_dot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_dot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_gemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_ger.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_ger.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_ger.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_ger.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_her2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_herk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_herk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_herk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_herk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_hpr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_nrm2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_nrm2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_nrm2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_nrm2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotmg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotmg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotmg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_rotmg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_sbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_sbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_sbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_sbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_scal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_scal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_scal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_scal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_spr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_swap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_swap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_swap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_swap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_symv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syr2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syrk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syrk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syrk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_syrk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tbsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_tpsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/test_trsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/tests.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/xerbla.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/xerbla.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/xerbla.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/xerbla.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zaxpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zaxpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zaxpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zaxpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zcopy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zcopy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zcopy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zcopy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotc_sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotc_sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotc_sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotc_sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotu_sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotu_sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotu_sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdotu_sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdscal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdscal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdscal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zdscal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgerc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgerc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgerc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgerc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgeru.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgeru.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgeru.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zgeru.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhemv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zher2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zherk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zherk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zherk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zherk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zhpr2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zscal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zscal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zscal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zscal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zswap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zswap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zswap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zswap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsymm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsymm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsymm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsymm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyr2k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyr2k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyr2k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyr2k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyrk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyrk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyrk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/zsyrk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztbsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztpsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cblas/ztrsv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta_inc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta_inc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta_inc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/beta_inc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/betainv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/betainv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/betainv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/betainv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/binomial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/binomial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/binomial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/binomial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchyinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchyinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchyinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/cauchyinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisqinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisqinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisqinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/chisqinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/error.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/error.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/error.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/error.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponential.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponential.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponential.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponential.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponentialinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponentialinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponentialinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exponentialinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exppow.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exppow.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exppow.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/exppow.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdistinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdistinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdistinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/fdistinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flatinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flatinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flatinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/flatinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gamma.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gamma.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gamma.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gamma.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gammainv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gammainv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gammainv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gammainv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gauss.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gauss.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gauss.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gauss.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gaussinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gaussinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gaussinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gaussinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/geometric.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/geometric.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/geometric.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/geometric.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gsl_cdf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gsl_cdf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gsl_cdf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gsl_cdf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1inv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1inv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1inv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel1inv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2inv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2inv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2inv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/gumbel2inv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/hypergeometric.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/hypergeometric.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/hypergeometric.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/hypergeometric.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplace.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplace.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplace.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplace.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplaceinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplaceinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplaceinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/laplaceinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logistic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logistic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logistic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logistic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logisticinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logisticinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logisticinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/logisticinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormalinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormalinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormalinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/lognormalinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/nbinomial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/nbinomial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/nbinomial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/nbinomial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pareto.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pareto.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pareto.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pareto.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/paretoinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/paretoinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/paretoinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/paretoinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pascal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pascal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pascal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/pascal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/poisson.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/poisson.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/poisson.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/poisson.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rat_eval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rat_eval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rat_eval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rat_eval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleigh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleigh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleigh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleigh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleighinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleighinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleighinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/rayleighinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdistinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdistinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdistinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/tdistinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test_auto.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test_auto.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test_auto.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/test_auto.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibull.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibull.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibull.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibull.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibullinv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibullinv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibullinv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cdf/weibullinv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/deriv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/deriv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/deriv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/deriv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/gsl_chebyshev.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/gsl_chebyshev.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/gsl_chebyshev.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/gsl_chebyshev.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/integ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/integ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/integ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/integ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/cheb/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/combination.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/combination.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/combination.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/combination.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/gsl_combination.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/gsl_combination.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/gsl_combination.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/gsl_combination.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/combination/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex_math.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex_math.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex_math.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/gsl_complex_math.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/math.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/math.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/math.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/math.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results_real.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results_real.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results_real.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/results_real.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/complex/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgsm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgsm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgsm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_cgsm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mks.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mks.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mks.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mks.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mksa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mksa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mksa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_mksa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_num.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_num.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_num.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/gsl_const_num.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/const/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/deriv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/deriv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/deriv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/deriv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/gsl_deriv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/gsl_deriv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/gsl_deriv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/gsl_deriv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/deriv/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/dht.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/dht.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/dht.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/dht.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/gsl_dht.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/gsl_dht.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/gsl_dht.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/gsl_dht.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/dht/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/diff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/diff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/diff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/diff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/gsl_diff.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/gsl_diff.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/gsl_diff.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/gsl_diff.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/diff/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/12-cities.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/12-cities.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/12-cities.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/12-cities.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithm.sty b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithm.sty similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithm.sty rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithm.sty diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithmic.sty b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithmic.sty similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithmic.sty rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/algorithmic.sty diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/autoconf.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/autoconf.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/autoconf.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/autoconf.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/blas.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/blas.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/blas.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/blas.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/bspline.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/calc.sty b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/calc.sty similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/calc.sty rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/calc.sty diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cblas.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cblas.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cblas.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cblas.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/cheb.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/combination.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/combination.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/combination.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/combination.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/complex.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/complex.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/complex.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/complex.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/const.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/const.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/const.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/const.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/debug.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/debug.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/debug.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/debug.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dht.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dht.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dht.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dht.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/diff.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/diff.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/diff.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/diff.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-orig.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-orig.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-orig.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-orig.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-samp.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-samp.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-samp.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt-samp.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/dwt.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/eigen.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/eigen.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/eigen.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/eigen.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/err.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/err.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/err.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/err.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/blas.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/block.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/bspline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/bspline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/bspline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/bspline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cblas.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cdf.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cheb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cheb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cheb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/cheb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/combination.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/const.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/demo_fn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/diff.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/dwt.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ecg.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ecg.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ecg.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ecg.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen_nonsymm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen_nonsymm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen_nonsymm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/eigen_nonsymm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/expfit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/expfit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/expfit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/expfit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fft.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fft.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fft.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fft.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftmr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftmr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftmr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftmr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftreal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftreal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftreal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fftreal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/fitting3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/histogram2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieee.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieee.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieee.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieee.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieeeround.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieeeround.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieeeround.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ieeeround.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/integration.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interpp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interpp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interpp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/interpp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/intro.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/linalglu.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrixw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrixw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrixw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/matrixw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/min.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/monte.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/monte.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/monte.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/monte.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/nlfit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/nlfit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/nlfit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/nlfit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntupler.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntupler.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntupler.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntupler.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntuplew.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntuplew.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntuplew.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ntuplew.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ode-initval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ode-initval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ode-initval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/ode-initval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/odefixed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/odefixed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/odefixed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/odefixed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permseq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permseq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permseq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permseq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permshuffle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permshuffle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permshuffle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/permshuffle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/polyroots.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/qrng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/qrng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/qrng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/qrng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.2.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.2.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.2.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.2.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randpoisson.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randwalk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randwalk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randwalk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/randwalk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rng.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.2.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.2.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.2.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.2.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rngunif.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rootnewt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rootnewt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rootnewt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/rootnewt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/roots.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/roots.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/roots.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/roots.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/siman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/siman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/siman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/siman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sortsmall.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/specfun_e.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/stat.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/statsort.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/sum.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vector.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vector.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vector.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vector.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.out b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.out similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.out rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorview.out diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/examples/vectorw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fdl.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fdl.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fdl.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fdl.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-f.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-f.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-f.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-f.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-t.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-t.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-t.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2-t.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-complex-radix2.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-real-mixedradix.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-real-mixedradix.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-real-mixedradix.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft-real-mixedradix.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fft.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.bib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.bib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.bib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.bib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fftalgorithms.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/final-route.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/final-route.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/final-route.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/final-route.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-exp.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-exp.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-exp.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-exp.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear2.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear2.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear2.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fit-wlinear2.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fitting.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fitting.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fitting.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/fitting.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/freemanuals.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/freemanuals.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/freemanuals.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/freemanuals.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gpl.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gpl.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gpl.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gpl.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-config.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-config.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-config.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-config.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-design.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-design.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-design.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-design.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-histogram.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-histogram.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-histogram.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-histogram.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-randist.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-randist.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-randist.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-randist.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-ref.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-ref.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-ref.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl-ref.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/gsl.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram2d.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram2d.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram2d.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/histogram2d.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ieee754.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ieee754.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ieee754.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ieee754.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/initial-route.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/initial-route.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/initial-route.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/initial-route.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/integration.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/integration.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/integration.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/integration.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp2.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp2.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp2.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interp2.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interpp2.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interpp2.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interpp2.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/interpp2.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/intro.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/intro.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/intro.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/intro.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/landau.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/landau.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/landau.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/landau.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/linalg.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/linalg.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/linalg.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/linalg.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/math.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/math.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/math.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/math.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/mdate-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/mdate-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/mdate-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/mdate-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min-interval.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min-interval.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min-interval.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min-interval.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/min.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/montecarlo.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/montecarlo.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/montecarlo.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/montecarlo.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multifit.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multifit.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multifit.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multifit.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multimin.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multiroots.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multiroots.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multiroots.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/multiroots.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ntuple.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ode-initval.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ode-initval.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ode-initval.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/ode-initval.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/permutation.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/permutation.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/permutation.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/permutation.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/poly.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/poly.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/poly.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/poly.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/qrng.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bernoulli.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bernoulli.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bernoulli.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bernoulli.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-beta.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-beta.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-beta.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-beta.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-binomial.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-binomial.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-binomial.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-binomial.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bivariate-gaussian.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bivariate-gaussian.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bivariate-gaussian.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-bivariate-gaussian.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-cauchy.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-cauchy.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-cauchy.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-cauchy.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-chisq.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-chisq.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-chisq.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-chisq.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-erlang.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-erlang.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-erlang.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-erlang.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exponential.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exponential.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exponential.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exponential.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exppow.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exppow.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exppow.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-exppow.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-fdist.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-fdist.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-fdist.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-fdist.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-flat.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-flat.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-flat.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-flat.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gamma.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gamma.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gamma.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gamma.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian-tail.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian-tail.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian-tail.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian-tail.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gaussian.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-geometric.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-geometric.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-geometric.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-geometric.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel1.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel1.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel1.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel1.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel2.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel2.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel2.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-gumbel2.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-hypergeometric.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-hypergeometric.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-hypergeometric.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-hypergeometric.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-landau.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-landau.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-landau.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-landau.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-laplace.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-laplace.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-laplace.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-laplace.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levy.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levy.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levy.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levy.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levyskew.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levyskew.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levyskew.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-levyskew.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logarithmic.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logarithmic.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logarithmic.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logarithmic.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logistic.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logistic.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logistic.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-logistic.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-lognormal.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-lognormal.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-lognormal.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-lognormal.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-nbinomial.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-nbinomial.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-nbinomial.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-nbinomial.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pareto.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pareto.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pareto.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pareto.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pascal.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pascal.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pascal.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-pascal.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-poisson.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-poisson.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-poisson.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-poisson.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh-tail.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh-tail.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh-tail.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh-tail.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-rayleigh.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-tdist.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-tdist.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-tdist.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-tdist.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-weibull.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-weibull.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-weibull.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rand-weibull.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randist.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randist.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randist.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randist.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/random-walk.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/random-walk.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/random-walk.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/random-walk.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randplots.gnp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randplots.gnp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randplots.gnp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/randplots.gnp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rng.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rng.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rng.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/rng.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-bisection.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-bisection.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-bisection.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-bisection.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-false-position.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-false-position.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-false-position.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-false-position.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-newtons-method.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-newtons-method.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-newtons-method.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-newtons-method.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-secant-method.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-secant-method.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-secant-method.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots-secant-method.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/roots.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-energy.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-energy.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-energy.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-energy.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-test.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-test.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-test.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman-test.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/siman.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sort.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sort.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sort.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sort.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-airy.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-airy.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-airy.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-airy.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-bessel.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-bessel.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-bessel.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-bessel.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-clausen.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-clausen.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-clausen.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-clausen.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coulomb.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coulomb.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coulomb.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coulomb.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coupling.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coupling.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coupling.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-coupling.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dawson.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dawson.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dawson.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dawson.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-debye.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-debye.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-debye.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-debye.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dilog.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dilog.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dilog.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-dilog.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elementary.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elementary.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elementary.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elementary.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-ellint.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-ellint.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-ellint.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-ellint.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elljac.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elljac.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elljac.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-elljac.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-erf.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-erf.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-erf.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-erf.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-exp.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-exp.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-exp.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-exp.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-expint.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-expint.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-expint.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-expint.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-fermi-dirac.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-fermi-dirac.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-fermi-dirac.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-fermi-dirac.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gamma.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gamma.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gamma.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gamma.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gegenbauer.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gegenbauer.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gegenbauer.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-gegenbauer.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-hyperg.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-hyperg.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-hyperg.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-hyperg.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-laguerre.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-laguerre.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-laguerre.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-laguerre.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-lambert.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-lambert.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-lambert.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-lambert.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-legendre.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-legendre.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-legendre.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-legendre.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-log.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-log.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-log.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-log.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-mathieu.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-mathieu.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-mathieu.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-mathieu.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-pow-int.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-pow-int.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-pow-int.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-pow-int.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-psi.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-psi.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-psi.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-psi.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-synchrotron.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-synchrotron.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-synchrotron.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-synchrotron.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-transport.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-transport.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-transport.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-transport.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-trig.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-trig.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-trig.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-trig.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-zeta.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-zeta.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-zeta.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc-zeta.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/specfunc.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/stamp-vti b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/stamp-vti similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/stamp-vti rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/stamp-vti diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/statistics.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/statistics.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/statistics.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/statistics.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sum.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sum.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sum.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/sum.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/texinfo.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/texinfo.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/texinfo.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/texinfo.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/usage.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/usage.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/usage.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/usage.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vdp.eps b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vdp.eps similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vdp.eps rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vdp.eps diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vectors.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vectors.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vectors.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/vectors.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/version-ref.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/version-ref.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/version-ref.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/doc/version-ref.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/francis.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/francis.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/francis.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/francis.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/gsl_eigen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/gsl_eigen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/gsl_eigen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/gsl_eigen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/herm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/herm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/herm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/herm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/hermv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/hermv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/hermv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/hermv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/jacobi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/jacobi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/jacobi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/jacobi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/nonsymmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/qrstep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/qrstep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/qrstep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/qrstep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/schur.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/sort.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/sort.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/sort.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/sort.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symmv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symmv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symmv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/symmv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/eigen/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_errno.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_errno.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_errno.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_errno.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_message.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_message.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_message.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/gsl_message.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/message.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/message.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/message.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/message.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/strerror.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/strerror.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/strerror.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/strerror.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/err/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/bitreverse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_6.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_6.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_6.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_6.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_7.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_7.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_7.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_7.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_n.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_n.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_n.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_pass_n.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_radix2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_radix2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_radix2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/c_radix2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/compare_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/complex_internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/complex_internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/complex_internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/complex_internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/dft_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/factorize.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/fft.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/fft.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/fft.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/fft.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_dft_complex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_complex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_halfcomplex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/gsl_fft_real_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_n.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_n.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_n.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_pass_n.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_radix2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_radix2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_radix2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_radix2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_unpack.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_unpack.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_unpack.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/hc_unpack.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_n.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_n.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_n.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_pass_n.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_radix2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_radix2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_radix2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_radix2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_unpack.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_unpack.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_unpack.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/real_unpack.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/signals_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_complex_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_complex_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_complex_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_complex_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_real_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_real_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_real_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_real_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_trap_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_trap_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_trap_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/test_trap_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/urand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/urand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/urand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fft/urand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/gsl_fit.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/gsl_fit.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/gsl_fit.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/gsl_fit.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/linear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/linear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/linear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/linear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/fit/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-config.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-config.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-config.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-config.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-histogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-histogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-histogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-histogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-randist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-randist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-randist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl-randist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.spec.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.spec.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.spec.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl.spec.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_machine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_machine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_machine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_machine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_math.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_math.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_math.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_math.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_mode.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_mode.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_mode.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_mode.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_nan.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_nan.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_nan.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_nan.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_pow_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_pow_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_pow_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_pow_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_precision.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_precision.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_precision.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_precision.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/gsl_version.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/add2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/calloc_range2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/copy2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/file2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/find2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/get2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram2d.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram2d.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram2d.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/gsl_histogram2d.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/init2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/maxval2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/oper2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/params2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/pdf2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/reset2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/stat2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_resample.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_resample.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_resample.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_resample.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_trap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_trap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_trap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test1d_trap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_resample.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_resample.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_resample.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_resample.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_trap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_trap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_trap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/test2d_trap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/urand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/urand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/urand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/histogram/urand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/endian.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/endian.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/endian.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/endian.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/env.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/env.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/env.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/env.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-aix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-aix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-aix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-aix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin86.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin86.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin86.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-darwin86.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-freebsd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-freebsd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-freebsd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-freebsd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuc99.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuc99.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuc99.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuc99.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnum68k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnum68k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnum68k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnum68k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuppc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuppc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuppc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnuppc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnusparc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnusparc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnusparc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnusparc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnux86.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnux86.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnux86.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-gnux86.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux11.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux11.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux11.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-hpux11.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-irix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-irix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-irix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-irix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-netbsd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-netbsd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-netbsd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-netbsd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-openbsd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-openbsd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-openbsd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-openbsd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-os2emx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-os2emx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-os2emx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-os2emx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-solaris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-solaris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-solaris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-solaris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-sunos4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-sunos4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-sunos4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-sunos4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-tru64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-tru64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-tru64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-tru64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-unknown.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-unknown.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-unknown.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp-unknown.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/fp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/gsl_ieee_utils.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/gsl_ieee_utils.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/gsl_ieee_utils.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/gsl_ieee_utils.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/make_rep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/make_rep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/make_rep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/make_rep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/read.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/read.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/read.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/read.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/standardize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/standardize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/standardize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/standardize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ieee-utils/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/append.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/append.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/append.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/append.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/gsl_integration.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/gsl_integration.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/gsl_integration.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/gsl_integration.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/initialise.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/initialise.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/initialise.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/initialise.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/positivity.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/positivity.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/positivity.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/positivity.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ptsort.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ptsort.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ptsort.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/ptsort.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qag.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qag.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qag.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qag.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qagp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qagp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qagp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qagp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qags.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qags.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qags.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qags.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qawo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qaws.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qaws.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qaws.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qaws.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25f.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25f.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25f.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25f.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25s.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25s.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25s.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qc25s.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qcheb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qcheb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qcheb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qcheb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qelg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qelg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qelg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qelg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk15.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk15.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk15.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk15.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk21.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk21.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk21.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk21.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk31.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk31.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk31.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk31.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk41.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk41.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk41.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk41.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk51.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk51.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk51.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk51.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk61.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk61.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk61.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qk61.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomof.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomof.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomof.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qmomof.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qng.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/qpsrt2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/reset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/reset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/reset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/reset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/set_initial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/set_initial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/set_initial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/set_initial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/tests.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/workspace.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/workspace.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/workspace.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/integration/workspace.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/accel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/accel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/accel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/accel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/akima.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/akima.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/akima.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/akima.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/bsearch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/cspline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/cspline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/cspline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/cspline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_interp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_interp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_interp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_interp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_spline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_spline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_spline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/gsl_spline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/integ_eval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/integ_eval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/integ_eval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/integ_eval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/interp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/interp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/interp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/interp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/linear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/linear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/linear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/linear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/poly.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/poly.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/poly.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/poly.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/spline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/spline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/spline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/spline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/interpolation/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/apply_givens.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/apply_givens.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/apply_givens.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/apply_givens.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balancemat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balancemat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balancemat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/balancemat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/bidiag.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/bidiag.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/bidiag.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/bidiag.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/cholesky.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/cholesky.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/cholesky.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/cholesky.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/exponential.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/exponential.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/exponential.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/exponential.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/givens.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/givens.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/givens.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/givens.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/gsl_linalg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/gsl_linalg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/gsl_linalg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/gsl_linalg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hermtd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hermtd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hermtd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hermtd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hessenberg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hessenberg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hessenberg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hessenberg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/hh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householdercomplex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householdercomplex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householdercomplex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/householdercomplex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/lu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/luc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/luc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/luc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/luc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/multiply.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/multiply.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/multiply.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/multiply.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ptlq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ptlq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ptlq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/ptlq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qrpt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qrpt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qrpt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/qrpt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svdstep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svdstep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svdstep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/svdstep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/symmtd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/symmtd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/symmtd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/symmtd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/linalg/tridiag.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/copy_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/file_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/getset_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_complex_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/gsl_matrix_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/init_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/matrix_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/minmax_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_complex_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_complex_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_complex_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_complex_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/oper_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/prop_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/rowcol_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/submatrix_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/swap_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_complex_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_complex_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_complex_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_complex_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_static.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_static.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_static.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/test_static.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/matrix/view_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mdate-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mdate-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mdate-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mdate-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/bracketing.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/bracketing.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/bracketing.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/bracketing.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/brent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/brent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/brent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/brent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/convergence.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/convergence.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/convergence.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/convergence.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/fsolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/fsolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/fsolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/fsolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/golden.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/golden.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/golden.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/golden.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/gsl_min.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/gsl_min.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/gsl_min.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/gsl_min.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/min.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/min.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/min.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/min.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test_funcs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test_funcs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test_funcs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/min/test_funcs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mkinstalldirs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mkinstalldirs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mkinstalldirs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/mkinstalldirs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_miser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_miser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_miser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_miser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_plain.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_plain.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_plain.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_plain.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_vegas.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_vegas.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_vegas.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/gsl_monte_vegas.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/miser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/miser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/miser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/miser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/plain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/plain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/plain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/plain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test_main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test_main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test_main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/test_main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/vegas.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/vegas.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/vegas.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/monte/vegas.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/convergence.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/convergence.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/convergence.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/convergence.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/covar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/covar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/covar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/covar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fdfsolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fdfsolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fdfsolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fdfsolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fsolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fsolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fsolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/fsolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gradient.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gradient.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gradient.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gradient.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit_nlin.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit_nlin.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit_nlin.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/gsl_multifit_nlin.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmiterate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmiterate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmiterate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmiterate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmpar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmpar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmpar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmpar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmutil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmutil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmutil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/lmutil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/multilinear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/multilinear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/multilinear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/multilinear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/qrsolv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/qrsolv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/qrsolv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/qrsolv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_brown.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_brown.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_brown.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_brown.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_enso.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_enso.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_enso.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_enso.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_estimator.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_estimator.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_estimator.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_estimator.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_filip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_filip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_filip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_filip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_fn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_fn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_fn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_fn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_hahn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_hahn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_hahn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_hahn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_kirby2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_kirby2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_kirby2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_kirby2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_longley.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_longley.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_longley.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_longley.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_nelson.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_nelson.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_nelson.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_nelson.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_pontius.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_pontius.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_pontius.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/test_pontius.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/work.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/work.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/work.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multifit/work.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_fr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_fr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_fr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_fr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_pr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_pr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_pr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/conjugate_pr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/convergence.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/convergence.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/convergence.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/convergence.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/diff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/diff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/diff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/diff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/directional_minimize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/directional_minimize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/directional_minimize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/directional_minimize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fdfminimizer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fdfminimizer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fdfminimizer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fdfminimizer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fminimizer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fminimizer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fminimizer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/fminimizer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/gsl_multimin.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/gsl_multimin.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/gsl_multimin.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/gsl_multimin.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_minimize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_minimize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_minimize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_minimize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_wrapper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_wrapper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_wrapper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/linear_wrapper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/simplex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/simplex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/simplex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/simplex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/steepest_descent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/steepest_descent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/steepest_descent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/steepest_descent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/test_funcs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multimin/vector_bfgs2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/broyden.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/broyden.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/broyden.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/broyden.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/convergence.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/convergence.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/convergence.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/convergence.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dnewton.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dnewton.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dnewton.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dnewton.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dogleg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dogleg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dogleg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/dogleg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/enorm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/enorm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/enorm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/enorm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdfsolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdfsolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdfsolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdfsolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdjac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdjac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdjac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fdjac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fsolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fsolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fsolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/fsolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gnewton.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gnewton.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gnewton.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gnewton.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gsl_multiroots.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gsl_multiroots.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gsl_multiroots.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/gsl_multiroots.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybrid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybrid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybrid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybrid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybridj.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybridj.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybridj.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/hybridj.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/newton.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/newton.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/newton.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/newton.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/multiroots/test_funcs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/gsl_ntuple.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/gsl_ntuple.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/gsl_ntuple.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/gsl_ntuple.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ntuple.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ntuple.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ntuple.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/ntuple.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ntuple/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/bsimp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/bsimp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/bsimp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/bsimp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/control.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/control.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/control.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/control.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cscal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cscal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cscal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cscal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cstd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cstd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cstd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/cstd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/evolve.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/evolve.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/evolve.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/evolve.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gear2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gsl_odeiv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gsl_odeiv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gsl_odeiv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/gsl_odeiv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/odeiv_util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/odeiv_util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/odeiv_util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/odeiv_util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2imp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2imp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2imp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2imp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2simp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2simp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2simp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk2simp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4imp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4imp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4imp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk4imp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk8pd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk8pd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk8pd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rk8pd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkck.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkck.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkck.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkck.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkf45.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkf45.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkf45.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/rkf45.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/step.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/step.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/step.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/step.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/ode-initval/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/canonical.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/canonical.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/canonical.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/canonical.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permutation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permutation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permutation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permutation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_complex_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_complex_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/gsl_permute_vector_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permutation.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permutation.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permutation.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permutation.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/permute_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/permutation/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/balance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/balance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/balance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/balance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/companion.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/companion.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/companion.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/companion.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/gsl_poly.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/gsl_poly.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/gsl_poly.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/gsl_poly.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/qr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/qr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/qr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/qr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_cubic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_cubic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_cubic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_cubic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_quadratic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_quadratic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_quadratic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/solve_quadratic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_cubic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_cubic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_cubic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_cubic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_quadratic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_quadratic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_quadratic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/poly/zsolve_quadratic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/gsl_qrng.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/gsl_qrng.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/gsl_qrng.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/gsl_qrng.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/niederreiter-2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/niederreiter-2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/niederreiter-2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/niederreiter-2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/qrng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/qrng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/qrng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/qrng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/sobol.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/sobol.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/sobol.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/sobol.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/qrng/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bernoulli.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bernoulli.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bernoulli.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bernoulli.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/beta.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/beta.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/beta.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/beta.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bigauss.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bigauss.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bigauss.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/bigauss.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial_tpe.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial_tpe.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial_tpe.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/binomial_tpe.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/cauchy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/cauchy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/cauchy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/cauchy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/chisq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/chisq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/chisq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/chisq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/dirichlet.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/dirichlet.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/dirichlet.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/dirichlet.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/discrete.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/discrete.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/discrete.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/discrete.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/erlang.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/erlang.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/erlang.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/erlang.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exponential.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exponential.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exponential.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exponential.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exppow.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exppow.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exppow.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/exppow.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/fdist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/fdist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/fdist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/fdist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/flat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/flat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/flat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/flat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gamma.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gamma.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gamma.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gamma.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gauss.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gauss.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gauss.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gauss.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausstail.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausstail.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausstail.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausstail.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausszig.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausszig.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausszig.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gausszig.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/geometric.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/geometric.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/geometric.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/geometric.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gsl_randist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gsl_randist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gsl_randist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gsl_randist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gumbel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gumbel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gumbel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/gumbel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/hyperg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/hyperg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/hyperg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/hyperg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/landau.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/landau.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/landau.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/landau.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/laplace.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/laplace.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/laplace.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/laplace.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/levy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/levy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/levy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/levy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logarithmic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logarithmic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logarithmic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logarithmic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logistic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logistic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logistic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/logistic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/lognormal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/lognormal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/lognormal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/lognormal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/multinomial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/multinomial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/multinomial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/multinomial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/nbinomial.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/nbinomial.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/nbinomial.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/nbinomial.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pareto.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pareto.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pareto.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pareto.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pascal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pascal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pascal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/pascal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/poisson.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/poisson.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/poisson.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/poisson.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/rayleigh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/rayleigh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/rayleigh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/rayleigh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/shuffle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/shuffle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/shuffle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/shuffle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/sphere.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/sphere.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/sphere.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/sphere.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/tdist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/tdist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/tdist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/tdist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/weibull.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/weibull.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/weibull.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/randist/weibull.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/borosh13.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/borosh13.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/borosh13.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/borosh13.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/cmrg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/cmrg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/cmrg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/cmrg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/coveyou.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/coveyou.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/coveyou.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/coveyou.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/default.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/default.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/default.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/default.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman18.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman18.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman18.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman18.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman20.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman20.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman20.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman20.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman2x.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman2x.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman2x.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/fishman2x.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gfsr4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gfsr4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gfsr4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gfsr4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gsl_rng.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gsl_rng.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gsl_rng.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/gsl_rng.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2002.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2002.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2002.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/knuthran2002.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/lecuyer21.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/lecuyer21.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/lecuyer21.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/lecuyer21.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/minstd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/minstd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/minstd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/minstd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mrg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mrg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mrg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mrg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/mt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/r250.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/r250.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/r250.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/r250.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran0.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran0.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran0.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran0.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ran3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand48.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand48.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand48.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rand48.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/random.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/random.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/random.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/random.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/randu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/randu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/randu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/randu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlux.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlux.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlux.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlux.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranlxs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranmar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranmar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranmar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/ranmar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/rng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/schrage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/schrage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/schrage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/schrage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/slatec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/slatec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/slatec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/slatec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus113.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus113.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus113.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/taus113.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/transputer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/transputer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/transputer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/transputer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/tt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/tt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/tt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/tt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/types.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/types.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/types.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/types.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/uni32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/vax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/vax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/vax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/vax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/waterman14.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/waterman14.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/waterman14.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/waterman14.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/zuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/zuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/zuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/rng/zuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/bisection.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/bisection.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/bisection.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/bisection.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/brent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/brent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/brent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/brent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/convergence.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/convergence.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/convergence.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/convergence.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/falsepos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/falsepos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/falsepos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/falsepos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fdfsolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fdfsolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fdfsolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fdfsolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fsolver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fsolver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fsolver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/fsolver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/gsl_roots.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/gsl_roots.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/gsl_roots.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/gsl_roots.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/newton.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/newton.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/newton.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/newton.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/roots.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/roots.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/roots.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/roots.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/secant.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/secant.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/secant.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/secant.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/steffenson.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/steffenson.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/steffenson.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/steffenson.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test_funcs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test_funcs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test_funcs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/roots/test_funcs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/gsl_siman.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/gsl_siman.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/gsl_siman.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/gsl_siman.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_test_driver.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_test_driver.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_test_driver.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_test_driver.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_tsp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_tsp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_tsp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/siman_tsp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/siman/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_heapsort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_heapsort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_heapsort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_heapsort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/gsl_sort_vector_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sort.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sort.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sort.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sort.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortind.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortind.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortind.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortind.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvec_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/sortvecind_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subset_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/subsetind_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_heapsort.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_heapsort.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_heapsort.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_heapsort.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sort/test_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_der.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_der.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_der.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_der.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_zero.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_zero.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_zero.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/airy_zero.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/atanint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/atanint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/atanint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/atanint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I0.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I0.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I0.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I0.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_I1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_In.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_In.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_In.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_In.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Inu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Inu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Inu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Inu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J0.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J0.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J0.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J0.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_J1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jnu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jnu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jnu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Jnu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K0.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K0.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K0.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K0.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_K1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Kn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Kn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Kn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Kn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Knu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Knu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Knu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Knu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y0.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y0.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y0.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y0.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Y1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Yn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Yn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Yn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Yn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Ynu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Ynu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Ynu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_Ynu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_amp_phase.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_i.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_i.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_i.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_i.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_j.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_j.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_j.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_j.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_k.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_k.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_k.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_k.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_olver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_sequence.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_sequence.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_sequence.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_sequence.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_temme.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_y.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_y.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_y.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_y.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_zero.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_zero.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_zero.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/bessel_zero.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta_inc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta_inc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta_inc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/beta_inc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval_mode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval_mode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval_mode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/cheb_eval_mode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/chebyshev.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/chebyshev.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/chebyshev.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/chebyshev.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/check.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/check.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/check.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/check.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/clausen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/clausen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/clausen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/clausen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb_bound.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb_bound.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb_bound.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coulomb_bound.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coupling.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coupling.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coupling.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/coupling.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dawson.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dawson.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dawson.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dawson.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/debye.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/debye.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/debye.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/debye.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dilog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dilog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dilog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/dilog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elementary.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elementary.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elementary.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elementary.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ellint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ellint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ellint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/ellint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elljac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elljac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elljac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/elljac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/erfc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/erfc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/erfc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/erfc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/error.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/error.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/error.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/error.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/eval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/eval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/eval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/eval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/exp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/exp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/exp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/exp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/expint3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/fermi_dirac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/fermi_dirac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/fermi_dirac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/fermi_dirac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma_inc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma_inc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma_inc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gamma_inc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gegenbauer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gegenbauer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gegenbauer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gegenbauer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_airy.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_airy.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_airy.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_airy.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_bessel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_bessel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_bessel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_bessel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_clausen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_clausen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_clausen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_clausen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coulomb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coulomb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coulomb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coulomb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coupling.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coupling.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coupling.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_coupling.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dawson.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dawson.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dawson.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dawson.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_debye.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_debye.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_debye.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_debye.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dilog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dilog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dilog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_dilog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elementary.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elementary.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elementary.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elementary.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_ellint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_ellint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_ellint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_ellint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elljac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elljac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elljac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_elljac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_erf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_erf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_erf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_erf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_exp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_exp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_exp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_exp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_expint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_expint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_expint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_expint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_fermi_dirac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_fermi_dirac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_fermi_dirac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_fermi_dirac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gamma.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gamma.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gamma.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gamma.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gegenbauer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gegenbauer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gegenbauer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_gegenbauer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_hyperg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_hyperg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_hyperg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_hyperg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_laguerre.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_laguerre.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_laguerre.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_laguerre.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_lambert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_lambert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_lambert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_lambert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_legendre.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_legendre.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_legendre.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_legendre.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_log.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_log.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_log.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_log.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_mathieu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_mathieu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_mathieu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_mathieu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_pow_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_pow_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_pow_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_pow_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_psi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_psi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_psi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_psi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_result.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_result.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_result.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_result.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_synchrotron.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_synchrotron.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_synchrotron.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_synchrotron.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_transport.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_transport.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_transport.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_transport.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_trig.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_trig.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_trig.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_trig.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_zeta.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_zeta.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_zeta.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_sf_zeta.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_specfunc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_specfunc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_specfunc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/gsl_specfunc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_0F1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_0F1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_0F1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_0F1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_1F1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_1F1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_1F1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_1F1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F0.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F0.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F0.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F0.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_2F1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_U.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_U.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_U.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/hyperg_U.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/laguerre.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/laguerre.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/laguerre.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/laguerre.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/lambert.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/lambert.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/lambert.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/lambert.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_H3d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_H3d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_H3d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_H3d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_Qn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_Qn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_Qn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_Qn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_con.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_con.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_con.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_con.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_poly.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_poly.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_poly.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/legendre_poly.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/log.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/log.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/log.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/log.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_angfunc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_angfunc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_angfunc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_angfunc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_charv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_charv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_charv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_charv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_coeff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_coeff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_coeff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_coeff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_radfunc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_radfunc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_radfunc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_radfunc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_workspace.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_workspace.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_workspace.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/mathieu_workspace.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/poch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/poch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/poch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/poch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/pow_int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/pow_int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/pow_int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/pow_int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/psi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/psi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/psi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/psi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/recurse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/recurse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/recurse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/recurse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/result.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/result.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/result.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/result.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/shint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/shint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/shint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/shint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/sinint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/sinint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/sinint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/sinint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/synchrotron.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/synchrotron.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/synchrotron.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/synchrotron.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_airy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_airy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_airy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_airy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_bessel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_bessel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_bessel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_bessel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_coulomb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_coulomb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_coulomb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_coulomb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_dilog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_dilog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_dilog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_dilog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_gamma.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_gamma.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_gamma.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_gamma.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_hyperg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_hyperg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_hyperg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_hyperg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_legendre.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_legendre.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_legendre.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_legendre.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_mathieu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_mathieu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_mathieu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_mathieu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/test_sf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/transport.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/transport.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/transport.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/transport.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/trig.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/trig.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/trig.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/trig.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/zeta.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/zeta.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/zeta.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/specfunc/zeta.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/absdev_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/covariance_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/gsl_statistics_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/kurtosis_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/lag1_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/mean_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/median_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/minmax_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/p_variance_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/quantiles_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/skew_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_float_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_float_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_float_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_float_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_int_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_int_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_int_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_int_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_nist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_nist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_nist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/test_nist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/ttest_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/variance_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wabsdev_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wkurtosis_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wmean_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wskew_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/statistics/wvariance_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/gsl_sum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/gsl_sum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/gsl_sum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/gsl_sum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_u.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_u.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_u.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_u.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_utrunc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_utrunc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_utrunc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/levin_utrunc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_u.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_u.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_u.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_u.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_utrunc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_utrunc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_utrunc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sum/work_utrunc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/coerce.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/coerce.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/coerce.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/coerce.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/expm1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/expm1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/expm1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/expm1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fcmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fcmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fcmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fcmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fdiv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fdiv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fdiv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/fdiv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/gsl_sys.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/gsl_sys.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/gsl_sys.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/gsl_sys.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/hypot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/hypot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/hypot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/hypot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/infnan.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/infnan.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/infnan.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/infnan.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/invhyp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/invhyp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/invhyp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/invhyp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ldfrexp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ldfrexp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ldfrexp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/ldfrexp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/log1p.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/log1p.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/log1p.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/log1p.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/minmax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/minmax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/minmax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/minmax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/pow_int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/pow_int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/pow_int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/pow_int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/prec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/prec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/prec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/prec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/sys/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_off.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_off.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_off.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_off.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_on.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_on.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_on.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/templates_on.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/gsl_test.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/gsl_test.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/gsl_test.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/gsl_test.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/results.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/results.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/results.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test/results.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test_gsl_histogram.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test_gsl_histogram.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test_gsl_histogram.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/test_gsl_histogram.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memcpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memcpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memcpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memcpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memmove.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memmove.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memmove.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/memmove.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/placeholder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/placeholder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/placeholder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/placeholder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strdup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strdup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strdup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strdup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtol.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtol.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtol.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtol.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtoul.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtoul.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtoul.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/strtoul.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/system.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/system.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/system.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/utils/system.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/copy_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/file_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_char.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_char.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_char.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_char.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_complex_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_float.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_float.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_float.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_float.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long_double.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long_double.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long_double.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_long_double.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_short.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_short.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_short.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_short.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uchar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uchar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uchar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uchar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_uint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ulong.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ulong.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ulong.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ulong.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ushort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ushort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ushort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/gsl_vector_ushort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/init_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/minmax_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/oper_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/prop_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/reim_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/subvector_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/swap_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_complex_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_complex_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_complex_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_complex_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_static.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_static.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_static.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/test_static.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/vector_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view_source.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view_source.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view_source.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/vector/view_source.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/version.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/version.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/version.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/version.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/bspline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/bspline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/bspline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/bspline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/daubechies.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/daubechies.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/daubechies.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/daubechies.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/dwt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/dwt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/dwt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/dwt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet2d.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet2d.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet2d.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/gsl_wavelet2d.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/haar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/haar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/haar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/haar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/wavelet.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/wavelet.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/wavelet.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/src/wavelet/wavelet.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/gsl/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Doxyfile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Doxyfile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Doxyfile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Doxyfile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.shared b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.shared similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.shared rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.shared diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/Makefile.static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/hooks.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/hooks.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/hooks.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/hooks.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/asm/generic/m5ops.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/asm/generic/m5ops.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/asm/generic/m5ops.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/asm/generic/m5ops.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/hooks.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/hooks.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/hooks.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/include/hooks.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5_mmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5op_x86.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5op_x86.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5op_x86.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/src/m5op_x86.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/hooks/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ansi2knr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cderror.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cderror.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cderror.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cderror.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cdjpeg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/change.log b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/change.log similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/change.log rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/change.log diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/cjpeg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ckconfig.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ckconfig.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ckconfig.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ckconfig.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/coderules.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/coderules.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/coderules.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/coderules.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/depcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/depcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/depcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/depcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/djpeg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/example.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/example.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/example.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/example.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/filelist.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/filelist.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/filelist.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/filelist.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/install.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jaricom.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jaricom.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jaricom.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jaricom.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapimin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapimin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapimin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapimin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapistd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapistd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapistd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcapistd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcarith.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcarith.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcarith.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcarith.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccoefct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccoefct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccoefct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccoefct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccolor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccolor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccolor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jccolor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcdctmgr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcdctmgr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcdctmgr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcdctmgr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jchuff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jchuff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jchuff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jchuff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcinit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcinit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcinit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcinit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmainct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmainct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmainct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmainct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmarker.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmarker.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmarker.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmarker.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmaster.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmaster.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmaster.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcmaster.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcomapi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcomapi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcomapi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcomapi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.bcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.bcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.bcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.bcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.cfg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.cfg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.cfg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.cfg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.dj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.dj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.dj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.dj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.manx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.manx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.manx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.manx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.mc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.sas b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.sas similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.sas rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.sas diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.st b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.st similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.st rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.st diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.vms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.wat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.wat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.wat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jconfig.wat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcparam.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcparam.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcparam.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcparam.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcprepct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcprepct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcprepct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcprepct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcsample.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcsample.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcsample.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jcsample.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jctrans.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jctrans.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jctrans.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jctrans.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapimin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapimin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapimin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapimin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapistd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapistd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapistd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdapistd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdarith.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdarith.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdarith.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdarith.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatadst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatadst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatadst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatadst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatasrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatasrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatasrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdatasrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcoefct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcoefct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcoefct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcoefct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcolor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcolor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcolor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdcolor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdct.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdct.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdct.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdct.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jddctmgr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jddctmgr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jddctmgr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jddctmgr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdhuff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdhuff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdhuff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdhuff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdinput.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdinput.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdinput.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdinput.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmainct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmainct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmainct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmainct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmarker.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmarker.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmarker.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmarker.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmaster.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmaster.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmaster.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmaster.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmerge.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmerge.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmerge.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdmerge.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdpostct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdpostct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdpostct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdpostct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdsample.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdsample.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdsample.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdsample.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdtrans.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdtrans.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdtrans.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jdtrans.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jerror.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctflt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctflt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctflt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctflt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctfst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctfst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctfst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctfst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jfdctint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctflt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctflt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctflt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctflt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctfst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctfst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctfst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctfst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jidctint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jinclude.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jinclude.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jinclude.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jinclude.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemansi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemansi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemansi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemansi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdosa.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdosa.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdosa.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemdosa.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmgr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmgr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmgr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemmgr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemname.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemname.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemname.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemname.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemnobs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemnobs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemnobs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemnobs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemsys.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemsys.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemsys.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmemsys.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmorecfg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmorecfg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmorecfg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jmorecfg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpeglib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpeglib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpeglib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpeglib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jpegtran.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jquant2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jutils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jutils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jutils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jutils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jversion.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jversion.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jversion.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/jversion.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/libjpeg.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makcjpeg.st b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makcjpeg.st similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makcjpeg.st rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makcjpeg.st diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makdjpeg.st b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makdjpeg.st similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makdjpeg.st rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makdjpeg.st diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeadsw.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeadsw.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeadsw.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeadsw.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeasln.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeasln.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeasln.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeasln.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdep.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdep.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdep.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdep.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdsp.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdsp.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdsp.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecdsp.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecmak.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecmak.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecmak.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecmak.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecvcp.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecvcp.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecvcp.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makecvcp.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddep.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddep.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddep.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddep.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddsp.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddsp.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddsp.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeddsp.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedmak.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedmak.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedmak.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedmak.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedvcp.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedvcp.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedvcp.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makedvcp.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.ansi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.ansi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.ansi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.ansi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.bcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.bcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.bcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.bcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.dj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.dj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.dj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.dj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.manx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.manx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.manx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.manx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.sas b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.sas similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.sas rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.sas diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.unix b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.unix similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.unix rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.unix diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.vms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.wat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.wat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.wat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makefile.wat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdep.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdep.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdep.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdep.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsp.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsp.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsp.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsp.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsw.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsw.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsw.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejdsw.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejmak.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejmak.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejmak.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejmak.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejsln.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejsln.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejsln.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejsln.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejvcp.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejvcp.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejvcp.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makejvcp.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeproj.mac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeproj.mac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeproj.mac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makeproj.mac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdep.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdep.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdep.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdep.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdsp.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdsp.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdsp.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makerdsp.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makermak.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makermak.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makermak.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makermak.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makervcp.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makervcp.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makervcp.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makervcp.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdep.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdep.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdep.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdep.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdsp.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdsp.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdsp.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketdsp.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketmak.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketmak.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketmak.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketmak.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketvcp.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketvcp.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketvcp.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maketvcp.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdep.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdep.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdep.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdep.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdsp.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdsp.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdsp.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewdsp.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewmak.vc6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewmak.vc6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewmak.vc6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewmak.vc6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewvcp.vc9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewvcp.vc9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewvcp.vc9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makewvcp.vc9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makljpeg.st b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makljpeg.st similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makljpeg.st rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makljpeg.st diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maktjpeg.st b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maktjpeg.st similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maktjpeg.st rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/maktjpeg.st diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makvms.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makvms.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makvms.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/makvms.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdbmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdbmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdbmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdbmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdcolmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdcolmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdcolmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdcolmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdgif.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdgif.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdgif.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdgif.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdjpgcom.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdppm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdppm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdppm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdppm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdrle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdrle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdrle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdrle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdswitch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdswitch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdswitch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdswitch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdtarga.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdtarga.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdtarga.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/rdtarga.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/structure.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/structure.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/structure.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/structure.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.bmp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.bmp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.bmp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.bmp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.jpg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.jpg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.jpg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.jpg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.ppm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.ppm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.ppm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimg.ppm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimgp.jpg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimgp.jpg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimgp.jpg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testimgp.jpg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testorig.jpg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testorig.jpg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testorig.jpg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testorig.jpg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testprog.jpg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testprog.jpg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testprog.jpg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/testprog.jpg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/transupp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/usage.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/usage.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/usage.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/usage.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wizard.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wizard.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wizard.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wizard.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrbmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrbmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrbmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrbmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrgif.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrgif.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrgif.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrgif.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrjpgcom.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrppm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrppm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrppm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrppm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrrle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrrle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrrle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrrle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrtarga.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrtarga.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrtarga.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/src/wrtarga.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libjpeg/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Copyright b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Copyright similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Copyright rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Copyright diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/DOCBparser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/DOCBparser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/DOCBparser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/DOCBparser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLparser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLparser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLparser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLparser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLtree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLtree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLtree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/HTMLtree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.tests b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.tests similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.tests rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/Makefile.tests diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README.tests b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README.tests similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README.tests rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/README.tests diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/SAX2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO_SCHEMAS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO_SCHEMAS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO_SCHEMAS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/TODO_SCHEMAS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acconfig.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acconfig.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acconfig.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acconfig.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acinclude.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acinclude.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acinclude.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/acinclude.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Bakefiles.bkgen b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Bakefiles.bkgen similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Bakefiles.bkgen rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Bakefiles.bkgen diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/Readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/libxml2.bkl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/libxml2.bkl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/libxml2.bkl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/bakefile/libxml2.bkl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/c14n.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/c14n.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/c14n.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/c14n.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/catalog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/catalog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/catalog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/catalog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite2.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite2.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite2.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-relaxng-test-suite2.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xinclude-test-suite.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xinclude-test-suite.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xinclude-test-suite.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xinclude-test-suite.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xml-test-suite.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xml-test-suite.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xml-test-suite.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xml-test-suite.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xsddata-test-suite.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xsddata-test-suite.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xsddata-test-suite.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/check-xsddata-test-suite.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/chvalid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/chvalid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/chvalid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/chvalid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/configure.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgen.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgen.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgen.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgen.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgenattr.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgenattr.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgenattr.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dbgenattr.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/debugXML.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/debugXML.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/debugXML.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/debugXML.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/depcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/depcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/depcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/depcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dict.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dict.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dict.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/dict.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk0.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk0.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk0.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk0.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk10.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk10.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk10.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk10.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk11.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk11.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk11.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk11.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk12.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk12.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk12.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk12.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk13.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk13.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk13.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk13.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk14.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk14.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk14.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk14.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk15.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk15.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk15.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk15.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk16.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk16.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk16.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk16.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk17.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk17.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk17.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk17.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk18.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk18.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk18.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk18.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk19.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk19.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk19.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk19.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk20.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk20.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk20.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk20.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk21.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk21.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk21.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk21.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk22.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk22.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk22.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk22.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk23.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk23.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk23.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk23.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk24.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk24.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk24.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk24.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk25.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk25.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk25.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk25.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk26.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk26.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk26.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk26.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk27.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk27.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk27.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk27.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk28.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk28.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk28.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk28.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk29.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk29.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk29.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk29.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk5.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk5.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk5.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk5.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk6.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk6.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk6.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk6.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk7.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk7.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk7.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk7.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk8.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk8.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk8.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk8.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk9.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk9.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk9.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIchunk9.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIconstructors.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIconstructors.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIconstructors.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIconstructors.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfiles.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfiles.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfiles.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfiles.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfunctions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfunctions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfunctions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIfunctions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIsymbols.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIsymbols.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIsymbols.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/APIsymbols.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/ChangeLog.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/ChangeLog.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/ChangeLog.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/ChangeLog.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/DOM.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/FAQ.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/FAQ.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/FAQ.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/FAQ.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-180x168.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-180x168.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-180x168.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-180x168.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-90x34.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-90x34.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-90x34.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Libxml2-Logo-90x34.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/README.docs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/README.docs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/README.docs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/README.docs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XMLinfo.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XMLinfo.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XMLinfo.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XMLinfo.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XSLT.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XSLT.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XSLT.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/XSLT.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/api.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/api.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/api.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/api.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/apibuild.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/apibuild.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/apibuild.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/apibuild.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/architecture.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/architecture.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/architecture.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/architecture.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/bugs.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/bugs.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/bugs.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/bugs.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/catalog.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/contribs.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/contribs.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/contribs.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/contribs.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/devhelp.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/devhelp.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/devhelp.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/devhelp.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/general.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/general.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/general.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/general.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/home.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/home.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/home.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/home.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/html.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/html.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/html.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/html.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/left.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/left.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/left.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/left.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-DOCBparser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-DOCBparser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-DOCBparser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-DOCBparser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLparser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLparser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLparser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLparser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLtree.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLtree.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLtree.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-HTMLtree.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-SAX2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-c14n.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-c14n.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-c14n.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-c14n.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-catalog.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-catalog.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-catalog.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-catalog.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-chvalid.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-chvalid.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-chvalid.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-chvalid.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-debugXML.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-debugXML.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-debugXML.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-debugXML.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-dict.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-dict.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-dict.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-dict.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-encoding.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-encoding.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-encoding.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-encoding.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-entities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-entities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-entities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-entities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-globals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-globals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-globals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-globals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-hash.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-hash.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-hash.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-hash.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-list.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-list.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-list.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-list.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanoftp.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanoftp.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanoftp.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanoftp.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanohttp.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanohttp.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanohttp.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-nanohttp.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parserInternals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parserInternals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parserInternals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-parserInternals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-pattern.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-pattern.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-pattern.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-pattern.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-relaxng.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-relaxng.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-relaxng.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-relaxng.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schemasInternals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schemasInternals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schemasInternals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schemasInternals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schematron.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schematron.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schematron.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-schematron.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-threads.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-threads.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-threads.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-threads.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-tree.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-tree.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-tree.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-tree.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-uri.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-uri.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-uri.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-uri.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-valid.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-valid.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-valid.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-valid.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xinclude.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xinclude.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xinclude.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xinclude.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xlink.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xlink.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xlink.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xlink.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlIO.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlIO.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlIO.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlIO.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlautomata.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlautomata.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlautomata.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlautomata.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlerror.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlerror.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlerror.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlerror.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlexports.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlexports.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlexports.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlexports.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmemory.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmemory.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmemory.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmemory.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmodule.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmodule.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmodule.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlmodule.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlreader.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlreader.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlreader.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlreader.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlregexp.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlregexp.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlregexp.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlregexp.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlsave.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlsave.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlsave.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlsave.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemas.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemas.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemas.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemas.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemastypes.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemastypes.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemastypes.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlschemastypes.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlstring.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlstring.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlstring.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlstring.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlunicode.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlunicode.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlunicode.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlunicode.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlversion.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlversion.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlversion.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlversion.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlwriter.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlwriter.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlwriter.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xmlwriter.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpath.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpath.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpath.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpath.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpathInternals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpathInternals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpathInternals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpathInternals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpointer.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpointer.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpointer.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2-xpointer.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2.devhelp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2.devhelp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2.devhelp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/libxml2.devhelp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/right.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/right.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/right.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/right.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/style.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/style.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/style.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/style.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/up.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/up.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/up.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/devhelp/up.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/docs.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/docs.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/docs.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/docs.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/downloads.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/downloads.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/downloads.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/downloads.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/elfgcchack.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/elfgcchack.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/elfgcchack.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/elfgcchack.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/encoding.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/encoding.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/encoding.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/encoding.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/entities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/entities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/entities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/entities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/example.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/example.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/example.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/example.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/examples.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/index.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/index.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/index.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/index.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io1.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/io2.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/parse4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader1.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader3.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/reader4.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/test3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/testWriter.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/testWriter.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/testWriter.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/testWriter.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree1.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tree2.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tst.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tst.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tst.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/tst.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/writer.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/writer.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/writer.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/writer.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath1.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.res b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.res similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.res rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/examples/xpath2.res diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/guidelines.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/guidelines.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/guidelines.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/guidelines.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/help.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/help.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/help.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/help.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/book1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/book1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/book1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/book1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/home.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/home.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/home.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/home.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/left.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/left.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/left.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/left.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-DOCBparser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-DOCBparser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-DOCBparser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-DOCBparser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLparser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLparser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLparser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLparser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLtree.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLtree.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLtree.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-HTMLtree.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-SAX2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-c14n.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-c14n.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-c14n.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-c14n.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-catalog.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-catalog.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-catalog.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-catalog.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-chvalid.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-chvalid.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-chvalid.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-chvalid.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-debugXML.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-debugXML.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-debugXML.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-debugXML.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-dict.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-dict.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-dict.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-dict.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-encoding.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-encoding.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-encoding.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-encoding.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-entities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-entities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-entities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-entities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-globals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-globals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-globals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-globals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-hash.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-hash.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-hash.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-hash.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-lib.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-lib.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-lib.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-lib.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-list.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-list.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-list.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-list.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanoftp.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanoftp.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanoftp.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanoftp.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanohttp.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanohttp.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanohttp.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-nanohttp.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parser.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parser.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parser.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parser.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parserInternals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parserInternals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parserInternals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-parserInternals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-pattern.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-pattern.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-pattern.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-pattern.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-relaxng.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-relaxng.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-relaxng.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-relaxng.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schemasInternals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schemasInternals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schemasInternals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schemasInternals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schematron.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schematron.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schematron.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-schematron.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-threads.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-threads.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-threads.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-threads.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-tree.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-tree.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-tree.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-tree.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-uri.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-uri.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-uri.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-uri.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-valid.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-valid.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-valid.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-valid.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xinclude.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xinclude.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xinclude.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xinclude.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xlink.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xlink.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xlink.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xlink.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlIO.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlIO.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlIO.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlIO.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlautomata.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlautomata.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlautomata.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlautomata.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlerror.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlerror.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlerror.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlerror.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlexports.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlexports.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlexports.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlexports.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmemory.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmemory.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmemory.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmemory.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmodule.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmodule.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmodule.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlmodule.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlreader.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlreader.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlreader.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlreader.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlregexp.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlregexp.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlregexp.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlregexp.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlsave.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlsave.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlsave.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlsave.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemas.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemas.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemas.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemas.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemastypes.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemastypes.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemastypes.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlschemastypes.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlstring.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlstring.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlstring.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlstring.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlunicode.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlunicode.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlunicode.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlunicode.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlversion.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlversion.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlversion.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlversion.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlwriter.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlwriter.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlwriter.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xmlwriter.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpath.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpath.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpath.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpath.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpathInternals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpathInternals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpathInternals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpathInternals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpointer.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpointer.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpointer.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/libxml-xpointer.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/right.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/right.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/right.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/right.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/up.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/up.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/up.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/html/up.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/index.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/interface.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/interface.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/interface.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/interface.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/intro.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/intro.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/intro.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/intro.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/library.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/library.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/library.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/library.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2-api.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2-api.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2-api.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2-api.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2.xsa b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2.xsa similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2.xsa rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/libxml2.xsa diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/namespaces.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/namespaces.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/namespaces.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/namespaces.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/newapi.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/newapi.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/newapi.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/newapi.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/news.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/python.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/python.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/python.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/python.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/redhat.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/redhat.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/redhat.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/redhat.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/search.php b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/search.php similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/search.php rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/search.php diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/searches.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/site.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/site.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/site.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/site.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/smallfootonly.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/smallfootonly.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/smallfootonly.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/smallfootonly.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/structure.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/structure.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/structure.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/structure.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/threads.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/threads.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/threads.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/threads.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tree.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tree.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tree.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tree.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apa.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apa.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apa.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apa.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apb.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apb.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apb.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apb.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apc.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apc.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apc.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apc.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apd.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apd.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apd.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apd.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ape.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ape.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ape.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ape.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apf.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apf.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apf.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apf.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apg.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apg.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apg.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/apg.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/aph.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/aph.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/aph.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/aph.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/api.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/api.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/api.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/api.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s02.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s02.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s02.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s02.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s03.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s03.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s03.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s03.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s04.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s04.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s04.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s04.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s05.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s05.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s05.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s05.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s06.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s06.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s06.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s06.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s07.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s07.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s07.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s07.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s08.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s08.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s08.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s08.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s09.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s09.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s09.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ar01s09.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/blank.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/blank.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/blank.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/blank.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/1.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/1.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/1.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/1.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/10.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/10.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/10.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/10.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/2.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/2.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/2.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/2.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/3.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/3.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/3.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/3.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/4.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/4.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/4.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/4.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/5.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/5.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/5.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/5.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/6.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/6.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/6.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/6.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/7.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/7.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/7.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/7.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/8.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/8.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/8.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/8.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/9.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/9.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/9.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/callouts/9.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/caution.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/caution.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/caution.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/caution.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/draft.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/draft.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/draft.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/draft.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/home.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/home.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/home.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/home.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/important.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/important.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/important.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/important.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/next.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/next.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/next.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/next.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/note.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/note.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/note.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/note.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/prev.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/prev.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/prev.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/prev.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/tip.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/tip.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/tip.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/tip.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-blank.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-blank.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-blank.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-blank.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-minus.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-minus.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-minus.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-minus.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-plus.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-plus.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-plus.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/toc-plus.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/up.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/up.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/up.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/up.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/warning.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/warning.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/warning.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/images/warning.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddattribute.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddattribute.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddattribute.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddattribute.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddkeyword.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddkeyword.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddkeyword.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeaddkeyword.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeconvert.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeconvert.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeconvert.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includeconvert.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includegetattribute.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includegetattribute.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includegetattribute.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includegetattribute.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includekeyword.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includekeyword.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includekeyword.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includekeyword.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includexpath.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includexpath.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includexpath.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/includexpath.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ix01.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ix01.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ix01.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/ix01.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/xmltutorial.pdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/xmltutorial.pdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/xmltutorial.pdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/tutorial/xmltutorial.pdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/upgrade.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/upgrade.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/upgrade.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/upgrade.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/w3c.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/w3c.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/w3c.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/w3c.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/wiki.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/wiki.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/wiki.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/wiki.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xml.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xml.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xml.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xml.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlcatalog_man.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmldtd.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmldtd.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmldtd.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmldtd.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlio.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlio.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlio.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlio.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmllint.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlmem.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlmem.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlmem.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlmem.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlreader.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlreader.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlreader.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xmlreader.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xsa.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xsa.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xsa.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/doc/xsa.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/elfgcchack.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/elfgcchack.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/elfgcchack.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/elfgcchack.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/encoding.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/encoding.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/encoding.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/encoding.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/entities.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/entities.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/entities.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/entities.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobread.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobread.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobread.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobread.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobs.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobs.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobs.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/example/gjobs.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/genUnicode.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/genUnicode.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/genUnicode.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/genUnicode.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/gentest.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/gentest.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/gentest.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/gentest.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/globals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/globals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/globals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/globals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/hash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/hash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/hash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/hash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/DOCBparser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/DOCBparser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/DOCBparser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/DOCBparser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLparser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLparser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLparser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLparser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLtree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLtree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLtree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/HTMLtree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/SAX2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/c14n.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/c14n.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/c14n.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/c14n.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/catalog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/catalog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/catalog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/catalog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/chvalid.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/chvalid.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/chvalid.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/chvalid.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/debugXML.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/debugXML.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/debugXML.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/debugXML.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/dict.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/dict.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/dict.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/dict.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/encoding.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/encoding.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/encoding.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/encoding.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/entities.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/entities.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/entities.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/entities.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/globals.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/globals.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/globals.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/globals.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/list.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/list.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/list.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/list.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanoftp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanoftp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanoftp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanoftp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanohttp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanohttp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanohttp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/nanohttp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parserInternals.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parserInternals.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parserInternals.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/parserInternals.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/pattern.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/pattern.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/pattern.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/pattern.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/relaxng.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/relaxng.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/relaxng.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/relaxng.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schemasInternals.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schemasInternals.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schemasInternals.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schemasInternals.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schematron.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schematron.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schematron.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/schematron.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/threads.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/threads.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/threads.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/threads.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/tree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/tree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/tree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/tree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/uri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/uri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/uri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/uri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/valid.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/valid.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/valid.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/valid.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xinclude.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xinclude.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xinclude.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xinclude.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xlink.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xlink.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xlink.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xlink.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlIO.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlIO.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlIO.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlIO.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlautomata.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlautomata.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlautomata.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlautomata.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlerror.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlerror.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlerror.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlerror.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlexports.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlexports.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlexports.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlexports.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmemory.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmemory.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmemory.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmemory.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmodule.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmodule.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmodule.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlmodule.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlreader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlreader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlreader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlreader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlregexp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlregexp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlregexp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlregexp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlsave.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlsave.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlsave.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlsave.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemas.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemas.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemas.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemas.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemastypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemastypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemastypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlschemastypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlstring.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlstring.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlstring.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlstring.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlunicode.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlunicode.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlunicode.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlunicode.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlversion.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlwriter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlwriter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlwriter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xmlwriter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpath.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpath.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpath.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpath.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpathInternals.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpathInternals.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpathInternals.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpathInternals.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpointer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpointer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpointer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/libxml/xpointer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/win32config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/win32config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/win32config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/win32config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/wsockcompat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/wsockcompat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/wsockcompat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/include/wsockcompat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/legacy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/legacy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/legacy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/legacy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0-uninstalled.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0-uninstalled.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0-uninstalled.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0-uninstalled.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml-2.0.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.spec.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.spec.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.spec.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml.spec.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml2.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml2.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml2.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/libxml2.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/list.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/list.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/list.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/list.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/libxml2.mcp.xml.sit.hqx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/libxml2.mcp.xml.sit.hqx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/libxml2.mcp.xml.sit.hqx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/libxml2.mcp.xml.sit.hqx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/XMLTestPrefix2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/config-mac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/config-mac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/config-mac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/config-mac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/libxml2_GUSIConfig.cp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/libxml2_GUSIConfig.cp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/libxml2_GUSIConfig.cp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/libxml2_GUSIConfig.cp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/macos_main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/macos_main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/macos_main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/macos/src/macos_main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/mkinstalldirs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/mkinstalldirs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/mkinstalldirs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/mkinstalldirs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanoftp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanoftp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanoftp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanoftp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanohttp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanohttp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanohttp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/nanohttp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parserInternals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parserInternals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parserInternals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/parserInternals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/pattern.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/pattern.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/pattern.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/pattern.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/drv_libxml2.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/drv_libxml2.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/drv_libxml2.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/drv_libxml2.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/generator.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/generator.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/generator.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/generator.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-py.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-py.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-py.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-py.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-python-api.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-python-api.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-python-api.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml2-python-api.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml_wrap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml_wrap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml_wrap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/libxml_wrap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/setup.py.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/attribs.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/attribs.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/attribs.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/attribs.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/build.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/build.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/build.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/build.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/compareNodes.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/compareNodes.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/compareNodes.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/compareNodes.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/ctxterror.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/ctxterror.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/ctxterror.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/ctxterror.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/cutnpaste.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/cutnpaste.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/cutnpaste.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/cutnpaste.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/dtdvalid.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/dtdvalid.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/dtdvalid.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/dtdvalid.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/error.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/error.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/error.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/error.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/inbuf.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/inbuf.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/inbuf.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/inbuf.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/indexes.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/indexes.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/indexes.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/indexes.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/invalid.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/invalid.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/invalid.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/invalid.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/nsdel.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/nsdel.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/nsdel.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/nsdel.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/outbuf.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/outbuf.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/outbuf.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/outbuf.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/push.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/push.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/push.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/push.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAX.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAX.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAX.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAX.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAXhtml.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAXhtml.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAXhtml.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/pushSAXhtml.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader2.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader2.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader2.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader2.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader3.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader3.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader3.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader3.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader4.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader4.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader4.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader4.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader5.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader5.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader5.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader5.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader6.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader6.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader6.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader6.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader7.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader7.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader7.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader7.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader8.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader8.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader8.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/reader8.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readererr.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readererr.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readererr.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readererr.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readernext.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readernext.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readernext.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/readernext.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/regexp.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/regexp.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/regexp.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/regexp.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/relaxng.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/relaxng.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/relaxng.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/relaxng.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/resolver.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/resolver.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/resolver.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/resolver.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/schema.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/schema.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/schema.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/schema.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/serialize.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/serialize.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/serialize.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/serialize.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/sync.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/sync.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/sync.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/sync.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/test.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/test.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/test.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/test.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/thread2.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/thread2.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/thread2.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/thread2.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tst.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstLastError.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstLastError.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstLastError.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstLastError.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstURI.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstURI.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstURI.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstURI.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstmem.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstmem.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstmem.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstmem.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstxpath.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstxpath.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstxpath.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/tstxpath.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/valid.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/valid.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/valid.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/valid.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validDTD.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validDTD.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validDTD.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validDTD.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validRNG.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validRNG.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validRNG.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validRNG.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validSchemas.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validSchemas.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validSchemas.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validSchemas.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validate.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validate.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validate.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/validate.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/walker.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/walker.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/walker.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/walker.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpath.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpath.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpath.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpath.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathext.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathext.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathext.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathext.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathret.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathret.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathret.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/tests/xpathret.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/types.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/types.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/types.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/python/types.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/regressions.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/relaxng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/relaxng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/relaxng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/relaxng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/53867.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/Down.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/attrents.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose2.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/autoclose3.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/cf_128.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc2.htm.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/doc3.htm.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/entities2.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/fp40.htm.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/liclose.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/lt.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/pre.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/python.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg1.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg2.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg3.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/reg4.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/repeat.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/script2.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test2.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/test3.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/HTML/wired.html.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/4rects.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/4rects.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/4rects.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/4rects.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-valid.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-valid.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-valid.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-valid.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-wf.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-wf.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-wf.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/a-wf.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike-errors.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike-errors.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike-errors.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike-errors.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/bike.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/circle.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/circle.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/circle.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/circle.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/defs.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/defs.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/defs.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/defs.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/desc.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/desc.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/desc.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/desc.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/ellipse.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/ellipse.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/ellipse.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/ellipse.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/flower2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/flower2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/flower2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/flower2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/gradient.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/gradient.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/gradient.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/gradient.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group03.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group03.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group03.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/group03.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-valid.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-valid.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-valid.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-valid.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-wf.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-wf.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-wf.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/image-wf.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/lin-gradient.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/lin-gradient.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/lin-gradient.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/lin-gradient.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/marker.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/marker.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/marker.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/marker.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mask.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mask.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mask.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mask.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mathswitch.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mathswitch.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mathswitch.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/mathswitch.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/parentns.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/parentns.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/parentns.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/parentns.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/path02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/patternfill.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/patternfill.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/patternfill.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/patternfill.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/polyline.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/polyline.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/polyline.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/polyline.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/private.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/private.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/private.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/private.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rad-gradient.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rad-gradient.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rad-gradient.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rad-gradient.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rectangle.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rectangle.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rectangle.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/rectangle.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/richdesc.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/richdesc.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/richdesc.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/richdesc.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/script.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/script.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/script.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/script.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/structure01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/structure01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/structure01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/structure01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/style.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/style.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/style.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/style.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/switch.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/switch.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/switch.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/switch.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/symbol-use.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/symbol-use.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/symbol-use.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/symbol-use.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/template.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/template.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/template.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/template.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text03.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text03.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text03.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/text03.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/toap02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/transform.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/transform.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/transform.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/transform.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/trivial.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/trivial.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/trivial.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/trivial.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/twin-gradients.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/twin-gradients.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/twin-gradients.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/twin-gradients.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/v-template.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/v-template.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/v-template.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/v-template.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-nest.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-nest.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-nest.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-nest.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-transform.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-transform.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-transform.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport-transform.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/viewport.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/wf-template.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/wf-template.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/wf-template.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/SVG/wf-template.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/smith.uri b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/smith.uri similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/smith.uri rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/smith.uri diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/uri.data b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/uri.data similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/uri.data rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/URI/uri.data diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeDefaultLegal b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeDefaultLegal similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeDefaultLegal rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeDefaultLegal diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeNmtokens b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeNmtokens similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeNmtokens rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/AttributeNmtokens diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/DuplicateType b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/DuplicateType similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/DuplicateType rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/DuplicateType diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/ElementValid8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/Enumeration b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/Enumeration similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/Enumeration rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/Enumeration diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/NS3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/OneID3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/PENesting2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/VC/UniqueElementTypeDeclaration2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/docids.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/include.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/nodes3.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/recursive.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/base b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/base similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/base rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/base diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/compare b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/compare similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/compare rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/compare diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/equality b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/equality similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/equality rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/equality diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/floats b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/floats similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/floats rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/floats diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/functions b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/functions similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/functions rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/functions diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/strings b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/strings similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/strings rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/expr/strings diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersbase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersbase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersbase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersbase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersprefol b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersprefol similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersprefol rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/chaptersprefol diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/idsimple b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/idsimple similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/idsimple rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/idsimple diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/langsimple b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/langsimple similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/langsimple rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/langsimple diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/mixedpat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/mixedpat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/mixedpat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/mixedpat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/nodespat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/nodespat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/nodespat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/nodespat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simpleabbr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simpleabbr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simpleabbr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simpleabbr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simplebase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simplebase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simplebase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/simplebase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/usr1check b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/usr1check similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/usr1check rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/usr1check diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/vidbase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/vidbase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/vidbase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/tests/vidbase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chapterschildseq b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chapterschildseq similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chapterschildseq rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chapterschildseq diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersparts b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersparts similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersparts rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersparts diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersrange b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersrange similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersrange rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/chaptersrange diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strpoint b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strpoint similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strpoint rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strpoint diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/strrange3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidbase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidbase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidbase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidbase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidchildseq b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidchildseq similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidchildseq rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidchildseq diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidparts b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidparts similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidparts rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/XPath/xptr/vidparts diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att3.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att4.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att5.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att6.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att7.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/att8.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/attrib.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/a b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/a similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/a rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/a diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/aba b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/aba similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/aba rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/aba diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abaa b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abaa similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abaa rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abaa diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abba b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abba similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abba rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/abba diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/automata/po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/badcomment.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigentname.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/bigname2.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-09 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-09 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-09 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-09 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-14 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-14 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-14 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-14 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-15 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-15 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-15 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-15 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-16 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-16 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-16 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-16 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-17 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-17 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-17 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-17 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-18 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-18 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-18 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-18 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-19 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-19 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-19 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-19 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-20 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-20 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-20 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-20 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-21 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-21 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-21 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-21 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-22 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-22 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-22 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-22 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-23 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-23 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-23 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-23 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-24 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-24 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-24 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-24 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-25 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-25 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-25 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-25 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-26 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-26 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-26 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-26 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/exc-without-comments/test-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/with-comments/example-7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/example-7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-00 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-00 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-00 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-00 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-01 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-01 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-01 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-01 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-02 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-02 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-02 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-02 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-03 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-03 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-03 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-03 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-04 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-04 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-04 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-04 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-05 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-05 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-05 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-05 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-06 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-06 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-06 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-06 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-07 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-07 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-07 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-07 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-08 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-08 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-08 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/merlin-c14n-two-08 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/c14n/without-comments/test-3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/catal b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/catal similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/catal rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/catal diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/docbook b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/docbook similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/docbook rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/docbook diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.empty b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.empty similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.empty rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.empty diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.full b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.full similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.full rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/mycatalog.full diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/registry b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/registry similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/registry rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/registry diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whites b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whites similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whites rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whites diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whitex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whitex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whitex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/catalogs/whitex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/cdata2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment2.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment3.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment4.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/comment5.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav10.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav11.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav12.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav13.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav15.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav16.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav17.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav18.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav19.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav3.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav4.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav5.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav6.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav7.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav8.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dav9.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/defattr2.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dia2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd10.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd11.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd12.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd13.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd3.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd4.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd5.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd6.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd7.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd8.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/dtd9.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent10.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent11.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent12.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent3.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent4.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent5.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent6.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent7.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent8.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ent9.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr1.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr2.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/attr3.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/cdata.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/charref1.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/name2.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/errors/webdav.xml.str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/eve.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/example.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/example.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/example.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/example.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/expr/base b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/expr/base similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/expr/base rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/expr/base diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/intsubset2.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/isolat3.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_0.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_1.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_10.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_11.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_3.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_4.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_5.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_6.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_7.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_8.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/namespaces/err_9.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/att8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/attrib.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/attrib.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/attrib.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/attrib.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/badcomment.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/badcomment.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/badcomment.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/badcomment.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigentname.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigentname.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigentname.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigentname.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/bigname2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/cdata2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/comment5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav15 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav15 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav15 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav15 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav16 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav16 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav16 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav16 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav17 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav17 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav17 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav17 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav18 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav18 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav18 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav18 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav19 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav19 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav19 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav19 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dav9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/defattr2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dia2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/dtd9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ent9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/eve.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/eve.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/eve.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/eve.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/intsubset2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/isolat3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/ns7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/nsclean.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/nsclean.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/nsclean.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/nsclean.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/p3p b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/p3p similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/p3p rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/p3p diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/pi2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/rdf2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.rdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.rdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.rdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.rdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot16.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot16.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot16.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/slashdot16.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/svg3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/title.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/title.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/title.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/title.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/tstblanks.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/tstblanks.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/tstblanks.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/tstblanks.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bebom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bebom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bebom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bebom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16bom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16lebom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16lebom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16lebom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf16lebom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf8bom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf8bom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf8bom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/utf8bom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wap.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wap.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wap.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wap.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/winblanks.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/winblanks.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/winblanks.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/winblanks.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wml.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wml.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wml.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/wml.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtml1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtml1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtml1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtml1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtmlcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtmlcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtmlcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xhtmlcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/noent/xml2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns3.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns4.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns5.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns6.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/ns7.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/nsclean.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/p3p.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/conj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/conj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/conj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/conj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/multiple b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/multiple similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/multiple rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/multiple diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/namespaces b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/namespaces similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/namespaces rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/namespaces diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/simple b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/simple similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/simple rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pattern/simple diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/pi2.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/rdf2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/branch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/branch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/branch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/branch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug316338 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug316338 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug316338 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug316338 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug420596 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug420596 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug420596 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/bug420596 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/content b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/content similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/content rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/content diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/hard b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/hard similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/hard rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/hard diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ncname b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ncname similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ncname rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ncname diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ranges b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ranges similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ranges rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/ranges diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/regexp/xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/302836_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/307377_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/addressBook_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_7.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_8.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/choice0_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/compare0_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/comps_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/demo_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/docbook_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty0_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/empty1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/inline_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave0_0_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/interleave1_0_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/list_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/pattern2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/proofsystem_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/rngbug-001_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/spec_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/table_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_10_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_4_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_5_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_6_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_7_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_8_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor10_9_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor11_4_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor12_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor13_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor14_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor1_4_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor2_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_4_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_5_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_6_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_7_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_8_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor3_9_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor4_4_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_4_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor5_5_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor6_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor7_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor8_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_10_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_11_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_12_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_1_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_2_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_3_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_4_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_5_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_6_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_7_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_8_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutor9_9_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_valid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_valid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_valid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/relaxng/tutorA_valid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_0_7.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_1_7.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/all_2_7.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/allsg_0_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/annot-err_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any3_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any4_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_0_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any5_1_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any6_2_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any7_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/any8_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents-err1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attr0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/attruse_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141312_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug141333_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug143951_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug145246_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug152470_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug167754_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug303566_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug306806_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug309338_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug310264_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug312957_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug313982_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug321475_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug322411_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/bug323510_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/changelog093_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_0_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_1_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_5.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/choice_2_6.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/cos-st-restricts-1-2-err_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/date_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-1_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-2_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/decimal-3_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/deter0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/dur_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/elem0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-err_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty-value_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/empty_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension1_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/extension2_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-unionST-err1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/group0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/hexbinary_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/idc-keyref-err1_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/import2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/include3_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/item_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/length3_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/list0_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/mixed1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_0_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns0_1_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/ns2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/po1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction-enum-1_1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/restriction0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/seq0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/src-element3_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union2_1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/union_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon10_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon11_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon12_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon13_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon14_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon15_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon1_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon2_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon3_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon4_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon5_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon6_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon7_4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon8_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_0.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/schematron/zvon9_2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/base2.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set1.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set3.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/scripts/set4.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.rdf.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/slashdot16.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/svg3.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/title.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/tstblanks.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bebom.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16bom.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf16lebom.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/utf8bom.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/127772.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/dia.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id1.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/id3.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/index.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/mixed_ns.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/ns2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/objednavka.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/rss.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t10.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.dtd.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.dtd.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t4a.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.dtd.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t6.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t8a.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/t9a.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/valid/xlink.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wap.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/winblanks.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/wml.xml.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtml1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xhtmlcomp.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml1.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rde b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rde similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rde rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rde diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rdr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rdr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rdr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.rdr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xml2.sax2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err1.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_err2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst2.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst3.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml.err b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml.err similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml.err rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/result/xmlid/id_tst4.xml.err diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runsuite.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runsuite.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runsuite.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runsuite.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/runtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/schematron.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/schematron.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/schematron.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/schematron.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/53867.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/53867.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/53867.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/53867.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/Down.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/Down.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/Down.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/Down.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/attrents.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/attrents.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/attrents.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/attrents.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/autoclose3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/cf_128.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/cf_128.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/cf_128.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/cf_128.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc2.htm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc2.htm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc2.htm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc2.htm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc3.htm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc3.htm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc3.htm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/doc3.htm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/entities2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/fp40.htm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/fp40.htm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/fp40.htm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/fp40.htm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/liclose.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/liclose.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/liclose.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/liclose.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/lt.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/lt.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/lt.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/lt.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/pre.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/pre.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/pre.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/pre.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/python.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/python.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/python.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/python.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/reg4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/repeat.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/repeat.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/repeat.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/repeat.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/script2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/test3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/wired.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/wired.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/wired.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/HTML/wired.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/4rects.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/4rects.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/4rects.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/4rects.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-valid.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-valid.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-valid.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-valid.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-wf.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-wf.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-wf.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/a-wf.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/bike.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/bike.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/bike.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/bike.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/circle.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/circle.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/circle.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/circle.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/defs.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/defs.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/defs.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/defs.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/desc.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/desc.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/desc.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/desc.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/ellipse.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/ellipse.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/ellipse.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/ellipse.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/flower2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/flower2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/flower2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/flower2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/gradient.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/gradient.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/gradient.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/gradient.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group03.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group03.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group03.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/group03.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-valid.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-valid.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-valid.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-valid.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-wf.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-wf.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-wf.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/image-wf.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/lin-gradient.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/lin-gradient.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/lin-gradient.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/lin-gradient.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/marker.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/marker.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/marker.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/marker.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mask.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mask.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mask.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mask.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mathswitch.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mathswitch.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mathswitch.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/mathswitch.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/parentns.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/parentns.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/parentns.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/parentns.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/path02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/patternfill.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/patternfill.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/patternfill.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/patternfill.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/polyline.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/polyline.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/polyline.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/polyline.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/private.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/private.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/private.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/private.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rad-gradient.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rad-gradient.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rad-gradient.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rad-gradient.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rectangle.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rectangle.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rectangle.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/rectangle.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/richdesc.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/richdesc.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/richdesc.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/richdesc.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/script.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/script.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/script.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/script.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/structure01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/structure01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/structure01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/structure01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/style.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/style.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/style.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/style.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/switch.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/switch.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/switch.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/switch.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/symbol-use.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/symbol-use.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/symbol-use.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/symbol-use.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/template.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/template.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/template.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/template.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text03.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text03.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text03.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/text03.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/toap02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/transform.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/transform.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/transform.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/transform.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/trivial.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/trivial.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/trivial.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/trivial.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/twin-gradients.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/twin-gradients.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/twin-gradients.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/twin-gradients.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/v-template.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/v-template.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/v-template.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/v-template.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-nest.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-nest.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-nest.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-nest.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-transform.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-transform.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-transform.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport-transform.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/viewport.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/wf-template.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/wf-template.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/wf-template.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/SVG/wf-template.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/smith.uri b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/smith.uri similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/smith.uri rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/smith.uri diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/uri.data b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/uri.data similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/uri.data rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/URI/uri.data diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeDefaultLegal b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeDefaultLegal similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeDefaultLegal rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeDefaultLegal diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeNmtokens b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeNmtokens similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeNmtokens rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/AttributeNmtokens diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/DuplicateType b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/DuplicateType similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/DuplicateType rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/DuplicateType diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/ElementValid8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/Enumeration b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/Enumeration similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/Enumeration rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/Enumeration diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/NS3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/OneID3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/PENesting2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/UniqueElementTypeDeclaration2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/a.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/a.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/a.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/a.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/doc.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/doc.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/doc.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VC/dtds/doc.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/21.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/21.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/21.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/21.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/AttributeNmtokens.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/AttributeNmtokens.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/AttributeNmtokens.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/AttributeNmtokens.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v10.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v10.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v10.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v10.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v11.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v11.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v11.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v11.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v12.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v12.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v12.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v12.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v13.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v13.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v13.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v13.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v14.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v14.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v14.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v14.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v15.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v15.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v15.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v15.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v16.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v16.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v16.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v16.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v17.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v17.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v17.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v17.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v18.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v18.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v18.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v18.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v19.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v19.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v19.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v19.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v20.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v20.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v20.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v20.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v21.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v21.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v21.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v21.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v22.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v22.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v22.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v22.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v23.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v23.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v23.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v23.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v24.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v24.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v24.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v24.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v7.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v7.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v7.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v7.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v8.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v8.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v8.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v8.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v9.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v9.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v9.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/VCM/v9.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/ElemTypeMatch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/ElemTypeMatch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/ElemTypeMatch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/ElemTypeMatch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/EntityDeclared5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/LegalCharacter b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/LegalCharacter similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/LegalCharacter rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/LegalCharacter diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoExternalEntityRef b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoExternalEntityRef similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoExternalEntityRef rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoExternalEntityRef diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoLtInAttValue b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoLtInAttValue similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoLtInAttValue rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoLtInAttValue diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoRecursion b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoRecursion similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoRecursion rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/NoRecursion diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/PEintsubset b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/PEintsubset similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/PEintsubset rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/PEintsubset diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/WFC/UniqueAttSpec2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/docids.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/docids.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/docids.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/docids.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/fallback2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/include.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/include.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/include.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/include.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/nodes3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/recursive.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/recursive.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/recursive.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/recursive.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/tstencoding.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/tstencoding.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/tstencoding.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/tstencoding.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/txtinclude.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/txtinclude.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/txtinclude.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/docs/txtinclude.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/ids.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/ids.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/ids.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/ids.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/inc.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/inc.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/inc.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/inc.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/isolatin.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/isolatin.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/isolatin.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/isolatin.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/something.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/sub-inc.ent b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/sub-inc.ent similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/sub-inc.ent rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XInclude/ents/sub-inc.ent diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/chapters b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/chapters similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/chapters rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/chapters diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/id b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/id similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/id rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/id diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/lang b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/lang similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/lang rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/lang diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/mixed b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/mixed similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/mixed rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/mixed diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/nodes b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/nodes similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/nodes rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/nodes diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/simple b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/simple similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/simple rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/simple diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/str b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/str similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/str rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/str diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/usr1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/usr1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/usr1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/usr1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/vid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/vid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/vid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/docs/vid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/base b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/base similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/base rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/base diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/compare b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/compare similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/compare rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/compare diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/equality b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/equality similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/equality rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/equality diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/floats b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/floats similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/floats rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/floats diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/functions b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/functions similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/functions rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/functions diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/strings b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/strings similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/strings rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/expr/strings diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersbase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersbase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersbase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersbase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersprefol b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersprefol similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersprefol rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/chaptersprefol diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/idsimple b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/idsimple similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/idsimple rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/idsimple diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/langsimple b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/langsimple similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/langsimple rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/langsimple diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/mixedpat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/mixedpat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/mixedpat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/mixedpat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/nodespat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/nodespat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/nodespat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/nodespat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simpleabbr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simpleabbr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simpleabbr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simpleabbr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simplebase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simplebase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simplebase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/simplebase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/usr1check b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/usr1check similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/usr1check rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/usr1check diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/vidbase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/vidbase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/vidbase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/tests/vidbase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chapterschildseq b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chapterschildseq similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chapterschildseq rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chapterschildseq diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersparts b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersparts similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersparts rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersparts diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersrange b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersrange similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersrange rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/chaptersrange diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strpoint b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strpoint similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strpoint rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strpoint diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/strrange3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidbase b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidbase similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidbase rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidbase diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidchildseq b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidchildseq similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidchildseq rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidchildseq diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidparts b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidparts similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidparts rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/XPath/xptr/vidparts diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/att8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/attrib.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/attrib.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/attrib.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/attrib.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/a b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/a similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/a rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/a diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/aba b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/aba similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/aba rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/aba diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abaa b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abaa similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abaa rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abaa diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abba b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abba similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abba rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/abba diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/automata/po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/badcomment.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/badcomment.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/badcomment.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/badcomment.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigentname.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigentname.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigentname.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigentname.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/bigname2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-09.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-10.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-11.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-12.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-13.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-14.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-15.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-16.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-17.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-0.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-2.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/doc.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/doc.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/doc.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/doc.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/example-7.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/world.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/world.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/world.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/with-comments/world.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/doc.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/doc.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/doc.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/doc.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/example-7.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-00.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-01.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-02.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-03.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-04.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-05.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-06.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-07.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/merlin-c14n-two-08.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-0.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-1.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-2.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/test-3.xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/world.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/world.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/world.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/c14n/without-comments/world.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal1.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal1.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal1.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal1.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal2.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal2.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal2.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal2.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal3.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal3.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal3.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/catal3.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/docbook.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/registry.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/stylesheet.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/stylesheet.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/stylesheet.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/stylesheet.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.sgml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.sgml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.sgml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whites.sgml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/catalogs/whitex.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/cdata2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/comment5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav15 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav15 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav15 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav15 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav16 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav16 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav16 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav16 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav17 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav17 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav17 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav17 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav18 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav18 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav18 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav18 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav19 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav19 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav19 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav19 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dav9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/defattr2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dia2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtd9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtds/eve.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtds/eve.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtds/eve.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/dtds/eve.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent11 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent11 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent11 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent11 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent12 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent12 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent12 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent12 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ent9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/attr3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/cdata.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/cdata.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/cdata.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/cdata.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/charref1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/charref1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/charref1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/charref1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/dtd13 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/dtd13 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/dtd13 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/dtd13 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/name2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/webdav.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/webdav.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/webdav.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/errors/webdav.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/eve.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/eve.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/eve.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/eve.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/expr/base b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/expr/base similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/expr/base rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/expr/base diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/intsubset2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/isolat3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_10.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_10.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_10.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_10.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_11.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_11.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_11.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_11.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_7.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_7.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_7.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_7.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_8.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_8.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_8.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_8.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_9.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_9.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_9.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/err_9.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests-to-c.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests-to-c.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests-to-c.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests-to-c.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/namespaces/reconcile/tests.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns6 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns6 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns6 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns6 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/ns7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/nsclean.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/nsclean.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/nsclean.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/nsclean.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/p3p b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/p3p similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/p3p rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/p3p diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.pat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.pat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.pat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.pat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/conj.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.pat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.pat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.pat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.pat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/multiple.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.pat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.pat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.pat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.pat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/namespaces.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.pat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.pat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.pat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.pat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pattern/simple.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/pi2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/rdf2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/branch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/branch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/branch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/branch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug316338 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug316338 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug316338 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug316338 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug420596 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug420596 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug420596 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/bug420596 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/content b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/content similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/content rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/content diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/hard b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/hard similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/hard rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/hard diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ncname b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ncname similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ncname rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ncname diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ranges b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ranges similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ranges rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/ranges diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/xpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/xpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/xpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/regexp/xpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/302836_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/307377_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OASIS/spectest.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OASIS/spectest.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OASIS/spectest.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OASIS/spectest.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/OpenDocumentSub_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/addressBook.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/addressBook.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/addressBook.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/addressBook.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_7.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_7.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_7.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_7.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_8.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_8.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_8.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/choice0_8.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/compare0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/comps_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/demo3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/docbook_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/empty1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/inline3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave0_0.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave0_0.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave0_0.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave0_0.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave1_0.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave1_0.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave1_0.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/interleave1_0.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/list_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/pattern2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/proofsystem.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/proofsystem.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/proofsystem.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/proofsystem.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.ext b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.ext similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.ext rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.ext diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/rngbug-001.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/spec_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/table.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/table.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/table.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/table.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/testsuite.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/testsuite.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/testsuite.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/testsuite.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_10_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_1_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_2_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_5_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_6_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_7_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_8_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor10_9_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_1_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_2_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor11_4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor12_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor13_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor14_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor14_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor14_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor14_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor1_4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor2_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_1_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_5_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_6_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_7_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_8_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor3_9_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_3_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor4_4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_5.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_5.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_5.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor5_5.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_1_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_2_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor6_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_1_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_2_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor7_3_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_1_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_2_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor8_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_10_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_11_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_12_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_2_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_3_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_4_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_5_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_6_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_7_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_8_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutor9_9_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutorA.rng b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutorA.rng similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutorA.rng rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/relaxng/tutorA.rng diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_2.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_7.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_7.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_7.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/all_7.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/allsg_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/annot-err_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any3_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any4_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any5_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_2.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_2.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_2.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any6_2.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any7_2.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/any8_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive-errors1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-derive2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-errors1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-errors1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-errors1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-errors1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents-err1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr-processContents1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importA.1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importA.1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importA.1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importA.1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importB.1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importB.1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importB.1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr.importB.1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/anyAttr1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attr0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/attruse_0_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141312_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug141333_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951.imp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951.imp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951.imp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951.imp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug143951_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246.xsd.imp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246.xsd.imp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246.xsd.imp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246.xsd.imp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug145246_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug152470_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug167754_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug303566_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug306806_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug309338_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug310264_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug312957_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug313982_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug321475_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug322411_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/bug323510_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/changelog093_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_2.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_5.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_5.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_5.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_5.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/choice_6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-ct-extends-1-3_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/cos-st-restricts-1-2-err_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ct-sc-nobase_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/date_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-1_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-2_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/decimal-3_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension-err_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-extension_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-2-1-1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-ok-restriction-4-1-err_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyAttr_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/derivation-restriction-anyType.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/deter0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/dur_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/elem0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-err_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/element-minmax-err_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty-value_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/empty_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension1_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/extension2_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-unionST-err1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/facet-whiteSpace_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/group0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/hexbinary_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/idc-keyref-err1_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import-bad-1_0.imp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import-bad-1_0.imp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import-bad-1_0.imp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import-bad-1_0.imp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.imp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.imp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.imp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.imp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.imp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.imp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.imp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.imp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0b.imp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0b.imp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0b.imp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import1_0b.imp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.imp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.imp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.imp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.imp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/import2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/include3_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/item_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/length3_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/list0_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/mixed1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns0_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/ns2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/po1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restrict-CT-attr-ref_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-attr1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction-enum-1_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/restriction0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xmlns_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/scc-no-xsi_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq-dubl-elem1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/seq0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-form_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-st_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute3-2-type_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-attribute4_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element2-2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/src-element3_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/subst-group-1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union2_1.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/union_0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-complexTypes.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-complexTypes.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-complexTypes.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-complexTypes.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first0_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first1_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first2_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first3_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first4_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-first5_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-simpleTypes.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-simpleTypes.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-simpleTypes.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/vdv-simpleTypes.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xml.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xml.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xml.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xml.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-list-itemType_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schemas/xsd-simpleType-varieties_0.xsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon10_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon11_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon12_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon13_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon14_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon15_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon1_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon2_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon3_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon4_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon5_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon6_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon7_4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon8_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9.sct b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9.sct similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9.sct rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9.sct diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_0.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_0.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_0.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_0.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/schematron/zvon9_2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/base2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/scripts/set4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.rdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.rdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.rdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.rdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot16.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot16.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot16.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/slashdot16.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/svg3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a.example.org.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a.example.org.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a.example.org.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a.example.org.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a/a.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a/a.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a/a.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/a/a.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/abc.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/acb.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b.example.org.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b.example.org.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b.example.org.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b.example.org.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b/b.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b/b.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b/b.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/b/b.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bac.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/bca.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c.example.org.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c.example.org.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c.example.org.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c.example.org.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c/c.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c/c.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c/c.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/c/c.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cab.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/cba.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/complex.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/complex.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/complex.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/complex.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/example.org.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/example.org.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/example.org.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/example.org.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/invalid.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/invalid.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/invalid.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/threads/invalid.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/title.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/title.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/title.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/title.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/tstblanks.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/tstblanks.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/tstblanks.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/tstblanks.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bebom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bebom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bebom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bebom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16bom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16lebom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16lebom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16lebom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf16lebom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf8bom.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf8bom.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf8bom.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/utf8bom.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/127772.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/127772.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/127772.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/127772.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/REC-xml-19980210.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/REC-xml-19980210.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/REC-xml-19980210.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/REC-xml-19980210.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dia.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dia.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dia.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dia.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/127772.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/127772.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/127772.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/127772.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/NewsMLv1.0.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/NewsMLv1.0.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/NewsMLv1.0.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/NewsMLv1.0.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/destfoo.ent b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/destfoo.ent similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/destfoo.ent rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/destfoo.ent diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/nitf-2-5.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/nitf-2-5.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/nitf-2-5.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/nitf-2-5.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/objednavka.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/objednavka.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/objednavka.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/objednavka.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/spec.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/spec.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/spec.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/spec.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-lat1.ent b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-lat1.ent similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-lat1.ent rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-lat1.ent diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-special.ent b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-special.ent similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-special.ent rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-special.ent diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-symbol.ent b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-symbol.ent similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-symbol.ent rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml-symbol.ent diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml.cat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml.cat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml.cat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml.cat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-frameset.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-frameset.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-frameset.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-frameset.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-strict.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-strict.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-strict.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-strict.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-transitional.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-transitional.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-transitional.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1-transitional.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1.dcl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1.dcl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1.dcl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xhtml1.dcl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xmlspec.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xmlspec.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xmlspec.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/dtds/xmlspec.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/id3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/index.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/index.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/index.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/index.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/mixed_ns.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/mixed_ns.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/mixed_ns.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/mixed_ns.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/ns2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/objednavka.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/objednavka.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/objednavka.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/objednavka.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/rss.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/rss.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/rss.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/rss.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t10.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t10.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t10.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t10.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t4a.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.dtd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.dtd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.dtd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.dtd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t6.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8a.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8a.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8a.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t8a.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9a.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9a.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9a.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/t9a.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xhtml1.xhtml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xhtml1.xhtml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xhtml1.xhtml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xhtml1.xhtml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xlink.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xlink.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xlink.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/valid/xlink.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wap.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wap.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wap.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wap.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/warning/ent9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/winblanks.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/winblanks.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/winblanks.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/winblanks.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wml.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wml.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wml.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/wml.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtml1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtml1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtml1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtml1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtmlcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtmlcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtmlcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xhtmlcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xml2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_err2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst1.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst1.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst1.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst1.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst2.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst2.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst2.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst2.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst3.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst3.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst3.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst3.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst4.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst4.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst4.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xmlid/id_tst4.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtest.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtestsuite.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtestsuite.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtestsuite.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/test/xsdtest/xsdtestsuite.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testAutomata.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testAutomata.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testAutomata.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testAutomata.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testC14N.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testC14N.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testC14N.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testC14N.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testHTML.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testHTML.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testHTML.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testHTML.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testModule.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testModule.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testModule.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testModule.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testReader.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testReader.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testReader.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testReader.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRegexp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRegexp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRegexp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRegexp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRelax.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRelax.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRelax.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testRelax.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSAX.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSAX.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSAX.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSAX.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSchemas.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSchemas.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSchemas.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testSchemas.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreads.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreads.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreads.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreads.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreadsWin32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreadsWin32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreadsWin32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testThreadsWin32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testURI.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testURI.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testURI.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testURI.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testXPath.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testXPath.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testXPath.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testXPath.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testapi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testapi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testapi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testapi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testdso.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testdso.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testdso.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/testdso.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/threads.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/threads.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/threads.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/threads.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/tree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/tree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/tree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/tree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triodef.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triodef.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triodef.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triodef.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/trionan.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triop.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triop.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triop.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triop.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/triostr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/uri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/uri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/uri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/uri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/valid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/valid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/valid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/valid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/build_libxml.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/build_libxml.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/build_libxml.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/build_libxml.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/config.vms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/config.vms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/config.vms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/config.vms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/diffs.vms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/diffs.vms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/diffs.vms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/diffs.vms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/readme.vms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/readme.vms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/readme.vms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/vms/readme.vms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.bcb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.bcb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.bcb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.bcb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.mingw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.mingw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.mingw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.mingw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.msvc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.msvc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.msvc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Makefile.msvc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/Readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/configure.js b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/configure.js similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/configure.js rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/configure.js diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/defgen.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/defgen.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/defgen.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/defgen.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/libxml2.def.src b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/libxml2.def.src similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/libxml2.def.src rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/libxml2.def.src diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vco b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vco similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vco rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vco diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/libxml2.vcw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/win32/wince/wincecompat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xinclude.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xinclude.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xinclude.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xinclude.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xlink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xlink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xlink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xlink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2-config.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2Conf.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2Conf.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2Conf.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xml2Conf.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlIO.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlIO.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlIO.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlIO.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlcatalog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlcatalog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlcatalog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlcatalog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmllint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmllint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmllint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmllint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmemory.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmemory.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmemory.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmemory.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmodule.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmodule.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmodule.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlmodule.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlreader.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlreader.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlreader.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlreader.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlregexp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlregexp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlregexp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlregexp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlsave.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlsave.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlsave.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlsave.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemas.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemas.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemas.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemas.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemastypes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemastypes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemastypes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlschemastypes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlstring.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlstring.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlstring.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlstring.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlunicode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlunicode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlunicode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlunicode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlwriter.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlwriter.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlwriter.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xmlwriter.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpath.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpath.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpath.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpath.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpointer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpointer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpointer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xpointer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc-to-python.xsl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc-to-python.xsl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc-to-python.xsl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc-to-python.xsl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/src/xstc/xstc.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/libxml2/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.DJ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.DJ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.DJ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.DJ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.mgw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.mgw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.mgw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/Makefile.mgw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/acinclude.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/acinclude.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/acinclude.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/acinclude.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/minstall b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/minstall similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/minstall rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/minstall diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/mklib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/mklib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/mklib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/mklib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/version.mk b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/version.mk similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/version.mk rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/bin/version.mk diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-64-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/aix-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/autoconf.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/autoconf.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/autoconf.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/autoconf.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/beos b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/beos similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/beos rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/beos diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-osmesa b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-osmesa similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-osmesa rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-osmesa diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-xlc-osmesa b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-xlc-osmesa similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-xlc-osmesa rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/bluegene-xlc-osmesa diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/catamount-osmesa-pgi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/catamount-osmesa-pgi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/catamount-osmesa-pgi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/catamount-osmesa-pgi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/config.mgw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/config.mgw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/config.mgw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/config.mgw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-32bit b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-32bit similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-32bit rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-32bit diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-all b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-all similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-all rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/darwin-fat-all diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/default b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/default similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/default rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/default diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-amd64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-amd64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-amd64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-amd64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-x86 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-x86 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-x86 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/freebsd-dri-x86 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux10-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static-nothreads b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static-nothreads similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static-nothreads rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-32-static-nothreads diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-64-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux11-ia64-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/hpux9-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-64-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-n32-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/irix6-o32-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-alpha-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-debug b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-debug similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-debug rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-debug diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-directfb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-directfb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-directfb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-directfb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-debug b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-debug similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-debug rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-debug diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-ppc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-ppc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-ppc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-ppc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86-64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86-64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86-64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-x86-64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-xcb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-xcb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-xcb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-dri-xcb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-fbdev b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-fbdev similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-fbdev rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-fbdev diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-glide b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-glide similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-glide rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-glide diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ia64-icc-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-icc-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-indirect b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-indirect similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-indirect rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-indirect diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa16-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-osmesa32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ppc-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-profile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-profile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-profile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-profile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-ia64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-ia64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-ia64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-ia64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-x86 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-x86 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-x86 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-solo-x86 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-sparc5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ultrasparc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ultrasparc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ultrasparc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-ultrasparc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-debug b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-debug similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-debug rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-debug diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-64-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-debug b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-debug similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-debug rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-debug diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-glide b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-glide similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-glide rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-glide diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/linux-x86-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/netbsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/netbsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/netbsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/netbsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/openbsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/openbsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/openbsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/openbsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/osf1-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/solaris-x86-gcc-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos4-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-64-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-64-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-64-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-64-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-smp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-smp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-smp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-smp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v8-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-cc-g++ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-cc-g++ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-cc-g++ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-cc-g++ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-static b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-static similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-static rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/sunos5-v9-static diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/ultrix-gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/ultrix-gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/ultrix-gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configs/ultrix-gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_agp_offset.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_agp_offset.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_agp_offset.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_agp_offset.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_copy_sub_buffer.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_copy_sub_buffer.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_copy_sub_buffer.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_copy_sub_buffer.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pack_invert.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pack_invert.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pack_invert.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pack_invert.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pixmap_colormap.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pixmap_colormap.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pixmap_colormap.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_pixmap_colormap.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_release_buffers.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_release_buffers.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_release_buffers.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_release_buffers.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_resize_buffers.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_resize_buffers.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_resize_buffers.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_resize_buffers.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_set_3dfx_mode.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_set_3dfx_mode.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_set_3dfx_mode.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_set_3dfx_mode.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_shader_debug.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_shader_debug.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_shader_debug.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_shader_debug.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_control.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_control.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_control.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_control.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_frame_usage.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_frame_usage.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_frame_usage.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_swap_frame_usage.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_texture_array.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_texture_array.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_texture_array.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_texture_array.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_window_pos.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_window_pos.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_window_pos.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_window_pos.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_ycbcr_texture.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_ycbcr_texture.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_ycbcr_texture.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MESA_ycbcr_texture.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MiniGLX.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MiniGLX.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MiniGLX.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/MiniGLX.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.3DFX b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.3DFX similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.3DFX rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.3DFX diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.AMIWIN b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.AMIWIN similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.AMIWIN rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.AMIWIN diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.BEOS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.BEOS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.BEOS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.BEOS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.CYGWIN b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.CYGWIN similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.CYGWIN rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.CYGWIN diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.D3D b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.D3D similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.D3D rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.D3D diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.DJ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.DJ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.DJ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.DJ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.GGI b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.GGI similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.GGI rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.GGI diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.LYNXOS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.LYNXOS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.LYNXOS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.LYNXOS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MINGW32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MINGW32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MINGW32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MINGW32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MITS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MITS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MITS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.MITS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.NeXT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.NeXT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.NeXT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.NeXT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OS2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OS2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OS2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OS2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OpenStep b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OpenStep similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OpenStep rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.OpenStep diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.QUAKE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.QUAKE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.QUAKE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.QUAKE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.THREADS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.THREADS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.THREADS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.THREADS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.VMS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.VMS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.VMS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.VMS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WIN32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WIN32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WIN32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WIN32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WINDML b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WINDML similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WINDML rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.WINDML diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.directfb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.directfb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.directfb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/README.directfb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.2.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.4.2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.5 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.5 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.5 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-3.5 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.0.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-4.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.0.2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-5.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.0.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.2.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.3.2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/RELNOTES-6.4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/autoconf.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/autoconf.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/autoconf.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/autoconf.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/banner.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/banner.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/banner.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/banner.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/bugs.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/bugs.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/bugs.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/bugs.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/cell.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/cell.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/cell.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/cell.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/conform.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/conform.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/conform.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/conform.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/contents.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/contents.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/contents.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/contents.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/debugging.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/debugging.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/debugging.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/debugging.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/demos.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/demos.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/demos.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/demos.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/developers.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/developers.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/developers.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/developers.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/devinfo.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/devinfo.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/devinfo.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/devinfo.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/dispatch.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/dispatch.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/dispatch.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/dispatch.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/download.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/download.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/download.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/download.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/envvars.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/envvars.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/envvars.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/envvars.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/extensions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/extensions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/extensions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/extensions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/faq.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/faq.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/faq.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/faq.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/fbdev-dri.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/fbdev-dri.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/fbdev-dri.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/fbdev-dri.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/games.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/games.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/games.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/games.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glfbdev-driver.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glfbdev-driver.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glfbdev-driver.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glfbdev-driver.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glu.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glu.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glu.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/glu.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/helpwanted.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/helpwanted.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/helpwanted.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/helpwanted.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/install.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/install.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/install.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/install.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/intro.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/intro.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/intro.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/intro.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/libraries.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/libraries.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/libraries.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/libraries.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/license.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/license.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/license.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/license.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/lists.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/lists.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/lists.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/lists.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/mangling.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/mangling.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/mangling.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/mangling.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/modelers.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/modelers.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/modelers.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/modelers.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/news.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/news.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/news.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/news.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/osmesa.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/osmesa.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/osmesa.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/osmesa.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/pbuffers.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/pbuffers.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/pbuffers.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/pbuffers.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/perf.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/perf.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/perf.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/perf.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/precompiled.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/precompiled.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/precompiled.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/precompiled.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-6.5.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.3.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.3.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.3.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.3.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.4.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.4.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.4.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.4.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.0.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.1.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.1.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.1.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.1.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.2.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.2.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.2.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes-7.2.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/relnotes.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/repository.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/repository.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/repository.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/repository.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/science.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/science.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/science.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/science.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/shading.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/shading.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/shading.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/shading.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/sourcedocs.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/sourcedocs.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/sourcedocs.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/sourcedocs.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset-A.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset-A.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset-A.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset-A.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/subset.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/systems.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/systems.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/systems.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/systems.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/thanks.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/thanks.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/thanks.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/thanks.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utilities.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utilities.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utilities.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utilities.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utility.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utility.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utility.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/utility.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/versions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/versions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/versions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/versions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/webmaster.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/webmaster.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/webmaster.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/webmaster.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/xlibdriver.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/xlibdriver.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/xlibdriver.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/docs/xlibdriver.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/amesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/amesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/amesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/amesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/dmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/dmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/dmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/dmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/fxmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/fxmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/fxmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/fxmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/ggimesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/ggimesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/ggimesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/ggimesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl_mangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl_mangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl_mangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/gl_mangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glfbdev.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glfbdev.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glfbdev.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glfbdev.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu_mangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu_mangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu_mangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glu_mangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glut.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glut.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glut.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glut.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glutf90.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glutf90.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glutf90.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glutf90.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx_mangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx_mangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx_mangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glx_mangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glxext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glxext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glxext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/glxext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_interface.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_interface.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_interface.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_interface.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_sarea.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_sarea.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_sarea.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/dri_sarea.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/glcore.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/glcore.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/glcore.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/glcore.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/sarea.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/sarea.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/sarea.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/internal/sarea.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mesa_wgl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mesa_wgl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mesa_wgl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mesa_wgl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mglmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mglmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mglmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/mglmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/osmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/osmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/osmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/osmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/svgamesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/svgamesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/svgamesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/svgamesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglglutshapes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglglutshapes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglglutshapes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglglutshapes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/uglmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/vms_x_fix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/vms_x_fix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/vms_x_fix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/vms_x_fix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/wmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/wmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/wmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/wmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_x.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_x.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_x.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_x.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_xf86.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_xf86.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_xf86.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GL/xmesa_xf86.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GLView.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GLView.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GLView.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/include/GLView.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/mms-config. b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/mms-config. similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/mms-config. rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/mms-config. diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/dumpstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/dumpstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/dumpstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/dumpstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/errcheck.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/errcheck.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/errcheck.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/errcheck.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/extfuncs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/extfuncs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/extfuncs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/extfuncs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glstate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glutskel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glutskel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glutskel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/glutskel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/idproj.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/idproj.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/idproj.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/idproj.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/imagesgi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/imagesgi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/imagesgi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/imagesgi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/mwmborder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/mwmborder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/mwmborder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/mwmborder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/readtex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/sampleMakefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/sampleMakefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/sampleMakefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/sampleMakefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/shaderutil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/showbuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/trackball.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/winpos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/winpos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/winpos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/progs/util/winpos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/glu.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/glu.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/glu.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/glu.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.DJ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.DJ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.DJ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.DJ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.mgw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.mgw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.mgw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.mgw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.win b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.win similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.win rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/Makefile.win diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/dummy.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/dummy.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/dummy.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/dummy.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports.darwin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports.darwin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports.darwin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/glu.exports.darwin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/include/gluos.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/include/gluos.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/include/gluos.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/include/gluos.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierEval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/bezierPatchMesh.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glcurveval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glimports.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glimports.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glimports.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glimports.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glinterface.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glinterface.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glinterface.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glinterface.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glrenderer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/glsurfeval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/incurveeval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/incurveeval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/incurveeval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/incurveeval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/insurfeval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/insurfeval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/insurfeval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/insurfeval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/interface/mystdlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arcsorter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/arctess.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/backend.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basiccrveval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/basicsurfeval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bezierarc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bezierarc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bezierarc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bezierarc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bin.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/bufpool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/cachingeval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/ccw.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/ccw.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/ccw.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/ccw.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/coveandtiler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curve.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvelist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvesub.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvesub.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvesub.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/curvesub.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/dataTransform.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/defines.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/defines.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/defines.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/defines.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaylist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaymode.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaymode.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaymode.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/displaymode.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/flistsorter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridtrimvertex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridtrimvertex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridtrimvertex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridtrimvertex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridvertex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridvertex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridvertex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/gridvertex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/hull.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/intersect.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/intersect.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/intersect.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/intersect.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/jarcloc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/jarcloc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/jarcloc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/jarcloc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/knotvector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdesc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdescv.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdescv.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdescv.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mapdescv.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/maplist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mesher.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monoTriangulationBackend.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monoTriangulationBackend.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monoTriangulationBackend.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monoTriangulationBackend.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/monotonizer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/myassert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/myassert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/myassert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/myassert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mycode.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mycode.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mycode.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mycode.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mymath.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mymath.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mymath.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mymath.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mysetjmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mysetjmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mysetjmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mysetjmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mystring.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mystring.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mystring.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/mystring.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsconsts.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsconsts.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsconsts.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsconsts.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsinterfac.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsinterfac.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsinterfac.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbsinterfac.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/nurbstess.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/patchlist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/pwlarc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/pwlarc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/pwlarc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/pwlarc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/quilt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/reader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/renderhints.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/simplemath.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/simplemath.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/simplemath.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/simplemath.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/slicer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/sorter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/splitarcs.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/splitarcs.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/splitarcs.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/splitarcs.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/subdivider.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/tobezier.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/tobezier.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/tobezier.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/tobezier.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimregion.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/trimvertpool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/uarray.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/internals/varray.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/definitions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/definitions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/definitions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/definitions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/directedLine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/glimports.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/glimports.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/glimports.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/glimports.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/gridWrap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoChain.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoPolyPart.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/monoTriangulation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/mystdlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionX.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/partitionY.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyDBG.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/polyUtil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/primitiveStream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/quicksort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/rectBlock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleComp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompBot.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompRight.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/sampledLine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/searchTree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/zlassert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/zlassert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/zlassert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libnurbs/nurbtess/zlassert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/alg-outline b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/alg-outline similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/alg-outline rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/alg-outline diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict-list.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict-list.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict-list.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict-list.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/dict.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/geom.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/memalloc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/mesh.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/normal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-heap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-sort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-sort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-sort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq-sort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/priorityq.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/render.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/sweep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tess.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libtess/tessmono.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/glue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/glue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/glue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/glue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/gluint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/gluint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/gluint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/gluint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/mipmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/mipmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/mipmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/mipmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/project.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/project.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/project.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/project.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/quad.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/quad.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/quad.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/quad.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/registry.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/registry.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/registry.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/libutil/registry.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/mesaglu.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/mesaglu.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/mesaglu.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glu/sgi/mesaglu.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/beos_x11.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutBlocker.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCallback.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCallback.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCallback.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCallback.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutColor.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutColor.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutColor.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutColor.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursor.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursor.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursor.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursor.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursors.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursors.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursors.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutCursors.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutDstr.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutDstr.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutDstr.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutDstr.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutEvent.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutEvent.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutEvent.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutEvent.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutGet.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutGet.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutGet.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutGet.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutInit.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutInit.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutInit.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutInit.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutMenu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutOverlay.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutOverlay.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutOverlay.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutOverlay.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutState.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutState.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutState.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutState.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutWindow.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_8x13.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_8x13.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_8x13.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_8x13.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_9x15.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_9x15.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_9x15.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_9x15.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bwidth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bwidth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bwidth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_bwidth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_ext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_ext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_ext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_ext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel10.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel10.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel10.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel10.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel12.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel12.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel12.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel12.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel18.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel18.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel18.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_hel18.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_mroman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_mroman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_mroman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_mroman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_roman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_roman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_roman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_roman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_shapes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_shapes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_shapes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_shapes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_stroke.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_stroke.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_stroke.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_stroke.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_swidth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_swidth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_swidth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_swidth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_teapot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_teapot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_teapot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_teapot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr10.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr10.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr10.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr10.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr24.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr24.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr24.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_tr24.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_vidresize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_vidresize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_vidresize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glut_vidresize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutbitmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutbitmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutbitmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutbitmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutstroke.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutstroke.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutstroke.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/beos/glutstroke.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/NOTES b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/NOTES similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/NOTES rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/NOTES diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/callback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/callback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/callback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/callback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/color.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/color.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/color.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/color.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursors.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursors.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursors.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/cursors.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/events.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/events.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/events.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/events.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/ext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/ext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/ext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/ext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/font.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/game.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/game.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/game.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/game.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/globals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/globals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/globals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/globals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/menu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/menu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/menu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/menu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/models.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/models.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/models.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/models.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/overlay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/overlay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/overlay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/overlay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/teapot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/teapot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/teapot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/teapot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/window.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/window.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/window.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/directfb/window.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/Makefile.DJ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/Makefile.DJ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/Makefile.DJ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/Makefile.DJ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_hw.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_irq.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_irq.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_irq.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_irq.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_keyb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_keyb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_keyb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_keyb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_mouse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_mouse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_mouse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_mouse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_timer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_timer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_timer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/PC_HW/pc_timer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/callback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/callback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/callback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/callback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/color.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/color.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/color.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/color.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/extens.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/extens.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/extens.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/extens.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f8x13.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f8x13.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f8x13.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f8x13.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f9x15.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f9x15.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f9x15.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/f9x15.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel10.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel10.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel10.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel10.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel12.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel12.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel12.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel12.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel18.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel18.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel18.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/hel18.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/loop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/loop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/loop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/loop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/menu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/menu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/menu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/menu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mouse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mouse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mouse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mouse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mroman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mroman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mroman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/mroman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/overlay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/overlay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/overlay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/overlay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/roman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/roman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/roman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/roman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/shapes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/shapes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/shapes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/shapes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/stroke.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/stroke.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/stroke.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/stroke.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/teapot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/teapot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/teapot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/teapot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr10.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr10.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr10.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr10.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr24.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr24.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr24.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/tr24.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/window.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/window.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/window.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/dos/window.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/callback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/callback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/callback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/callback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/colormap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/colormap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/colormap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/colormap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursors.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursors.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursors.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/cursors.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/ext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/ext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/ext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/ext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/fbdev.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/fbdev.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/fbdev.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/fbdev.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/gamemode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/gamemode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/gamemode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/gamemode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/input.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/input.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/input.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/input.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/menu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/menu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/menu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/menu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/overlay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/overlay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/overlay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/overlay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/stroke.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/stroke.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/stroke.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/stroke.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/vidresize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/vidresize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/vidresize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/fbdev/vidresize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/ggiglut.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/ggiglut.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/ggiglut.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/ggi/ggiglut.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.cygnus b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.cygnus similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.cygnus rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.cygnus diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.mgw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.mgw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.mgw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.mgw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.sgi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.sgi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.sgi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.sgi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.win b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.win similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.win rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/Makefile.win diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/capturexfont.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/capturexfont.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/capturexfont.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/capturexfont.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/depend b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/depend similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/depend rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/depend diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/fxglut.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/fxglut.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/fxglut.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/fxglut.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_8x13.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_8x13.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_8x13.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_8x13.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_9x15.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_9x15.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_9x15.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_9x15.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bwidth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bwidth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bwidth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_bwidth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cindex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cindex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cindex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cindex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cursor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cursor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cursor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_cursor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dials.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dials.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dials.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dials.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dstr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dstr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dstr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_dstr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_event.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_event.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_event.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_event.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_ext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_ext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_ext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_ext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fcb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fcb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fcb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fcb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fullscrn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fullscrn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fullscrn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_fullscrn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_gamemode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_gamemode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_gamemode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_gamemode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_get.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_get.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_get.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_get.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_glxext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_glxext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_glxext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_glxext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel10.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel10.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel10.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel10.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel12.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel12.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel12.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel12.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel18.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel18.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel18.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_hel18.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_input.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_input.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_input.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_input.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_joy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_joy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_joy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_joy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyctrl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyctrl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyctrl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyctrl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_keyup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_menu2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_modifier.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_modifier.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_modifier.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_modifier.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mroman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mroman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mroman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_mroman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_overlay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_overlay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_overlay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_overlay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_roman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_roman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_roman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_roman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_shapes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_shapes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_shapes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_shapes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_space.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_space.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_space.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_space.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_stroke.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_stroke.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_stroke.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_stroke.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swidth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swidth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swidth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_swidth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tablet.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tablet.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tablet.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tablet.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_teapot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_teapot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_teapot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_teapot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr10.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr10.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr10.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr10.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr24.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr24.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr24.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_tr24.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_vidresize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_vidresize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_vidresize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_vidresize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_warp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_warp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_warp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_warp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_win.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_win.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_win.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_win.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_winmisc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_winmisc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_winmisc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glut_winmisc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutbitmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutbitmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutbitmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutbitmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutstroke.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutstroke.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutstroke.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutstroke.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutwin32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutwin32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutwin32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/glutwin32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/layerutil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/mms_depend b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/mms_depend similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/mms_depend rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/mms_depend diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/stroke.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/stroke.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/stroke.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/stroke.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_glx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_menu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_menu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_menu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_menu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_winproc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_winproc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_winproc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_winproc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/glx/win32_x11.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/callback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/callback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/callback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/callback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/color.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/color.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/color.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/color.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/globals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/globals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/globals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/globals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/glut.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/glut.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/glut.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/glut.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/menu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/menu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/menu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/menu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/models.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/models.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/models.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/models.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/overlay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/overlay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/overlay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/overlay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/teapot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/teapot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/teapot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/teapot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/window.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/window.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/window.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glut/mini/window.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawA.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawAP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawAP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawAP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwDrawAP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawA.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawAP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawAP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawAP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/GLwMDrawAP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/depend b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/depend similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/depend rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/depend diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/glw.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/glw.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/glw.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glw/glw.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/XF86dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/XF86dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/XF86dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/XF86dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/clientattrib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/clientattrib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/clientattrib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/clientattrib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/compsize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/compsize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/compsize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/compsize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_glx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_glx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_glx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/dri_glx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/drisw_glx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/drisw_glx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/drisw_glx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/drisw_glx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glcontextmodes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_pbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_pbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_pbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_pbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_query.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_query.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_query.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glx_query.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxclient.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxclient.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxclient.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxclient.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcmds.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcmds.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcmds.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcmds.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcurrent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcurrent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcurrent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxcurrent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxextensions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/glxhash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_init.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_size.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_texture_compression.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_texture_compression.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_texture_compression.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_texture_compression.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_transpose_matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_transpose_matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_transpose_matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_transpose_matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array_priv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array_priv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array_priv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_array_priv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_program.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_program.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_program.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_vertex_program.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_window_pos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_window_pos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_window_pos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/indirect_window_pos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packrender.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packrender.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packrender.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packrender.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packsingle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packsingle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packsingle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/packsingle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixelstore.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixelstore.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixelstore.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/pixelstore.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/render2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/render2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/render2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/render2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/renderpix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/renderpix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/renderpix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/renderpix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/single2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/single2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/single2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/single2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/singlepix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/singlepix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/singlepix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/singlepix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/vertarr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/vertarr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/vertarr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/vertarr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dristr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dristr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dristr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xf86dristr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xfont.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xfont.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xfont.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/glx/x11/xfont.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.DJ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.DJ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.DJ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.DJ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.mgw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.mgw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.mgw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/Makefile.mgw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/depend b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/depend similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/depend rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/depend diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/GLView.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/GLView.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/GLView.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/GLView.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/beos/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/common/driverfuncs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/idirectfbgl_mesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/idirectfbgl_mesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/idirectfbgl_mesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/directfb/idirectfbgl_mesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/blit.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/blit.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/blit.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/blit.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dpmi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dpmi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dpmi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/dpmi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/null.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/vga.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dos/video.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile.template b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile.template similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile.template rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/Makefile.template diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/depthtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/depthtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/depthtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/depthtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr_fake.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr_fake.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr_fake.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_bufmgr_fake.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/dri_util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/drirenderbuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/extension_helper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/extension_helper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/extension_helper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/extension_helper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/memops.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/memops.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/memops.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/memops.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/mmx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/spantmp_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/stenciltmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/stenciltmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/stenciltmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/stenciltmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/texmem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/utils.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/vblank.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlconfig.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/de.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/de.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/de.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/de.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/es.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/es.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/es.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/es.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/fr.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/fr.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/fr.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/fr.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/nl.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/nl.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/nl.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/nl.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/options.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/options.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/options.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/options.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/sv.po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/sv.po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/sv.po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/sv.po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/t_options.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/t_options.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/t_options.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/common/xmlpool/t_options.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/dri.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/dri.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/dri.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/dri.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Doxyfile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Doxyfile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Doxyfile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Doxyfile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_egl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_egl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_egl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/fb/fb_egl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_bitmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_clear.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_dd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_depth.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fifo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fifo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fifo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fifo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_fog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lines.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_linetmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_linetmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_linetmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_linetmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_points.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_pointtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_pointtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_pointtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_pointtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_rendertmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_rendertmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_rendertmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_rendertmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_stencil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tritmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tritmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tritmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_tritmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_vtxfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/ffb_xmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_dac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_dac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_dac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_dac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_drishare.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_drishare.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_drishare.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_drishare.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_regs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_regs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_regs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/ffb/server/ffb_regs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_client.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_client.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_client.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_client.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_inithw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_inithw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_inithw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_inithw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_regs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_regs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_regs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_regs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tritmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tritmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tritmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_tritmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_vb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_xmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_xmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_xmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/gamma_xmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/gamma/server/glint_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810_3d_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810_3d_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810_3d_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810_3d_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/i810vb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i810/server/i810_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_metaops.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_metaops.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_metaops.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_metaops.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texblend.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texblend.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texblend.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texblend.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_vtbl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_vtbl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_vtbl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i830_vtbl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug_fp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug_fp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug_fp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_debug_fp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_fragprog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_fragprog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_fragprog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_fragprog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_metaops.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_metaops.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_metaops.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_metaops.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_program.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex_layout.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex_layout.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex_layout.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_tex_layout.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_vtbl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_vtbl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_vtbl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/i915_vtbl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_pixel_read.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_pixel_read.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_pixel_read.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_pixel_read.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_structs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_structs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_structs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_structs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i915/intel_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_cc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_cc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_cc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_cc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_line.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_line.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_line.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_line.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_point.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_point.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_point.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_point.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_tri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_tri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_tri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_tri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_unfilled.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_unfilled.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_unfilled.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_unfilled.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_clip_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_curbe.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_curbe.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_curbe.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_curbe.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_defines.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_defines.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_defines.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_defines.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw_upload.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw_upload.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_draw_upload.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_debug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_debug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_debug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_debug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_eu_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_fallback.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_gs_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_metaops.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_metaops.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_metaops.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_metaops.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_misc_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_misc_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_misc_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_misc_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_program.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_program.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_program.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_program.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_sf_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_batch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_batch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_batch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_batch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_cache.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_cache.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_cache.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_cache.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_dump.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_dump.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_dump.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_dump.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_upload.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_upload.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_upload.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_state_upload.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_structs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_structs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_structs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_structs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex_layout.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex_layout.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex_layout.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_tex_layout.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_urb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_urb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_urb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_urb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_constval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_constval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_constval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_constval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_tnl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_tnl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_tnl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vs_tnl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vtbl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vtbl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vtbl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_vtbl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_debug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_debug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_debug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_debug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_fp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_fp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_fp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_fp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_glsl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_glsl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_glsl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_glsl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_iz.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_iz.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_iz.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_iz.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass0.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass0.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass0.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass0.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_pass2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_surface_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_surface_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_surface_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/brw_wm_surface_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_structs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_structs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_structs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/i965/intel_structs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_batchbuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_blit.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffer_objects.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_buffers.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_chipset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_chipset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_chipset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_chipset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_decode.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_depthstencil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_fbo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_mipmap_tree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_draw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_draw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_draw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_pixel_draw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_regions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_format.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_format.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_format.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_format.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_layout.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_obj.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_obj.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_obj.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_obj.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_subimage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_subimage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_subimage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_subimage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_validate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_validate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_validate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/intel_tex_validate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/i830_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/i830_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/i830_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/i830_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/intel/server/intel_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_dd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_native_vbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/mach64_vbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/server/mach64_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/server/mach64_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/server/mach64_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mach64/server/mach64_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Doxyfile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Doxyfile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Doxyfile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Doxyfile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texcombine.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texcombine.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texcombine.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texcombine.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mga_xmesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgacontext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgacontext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgacontext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgacontext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgadd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgapixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaregs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaregs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaregs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaregs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgarender.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgarender.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgarender.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgarender.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgaspan.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgastate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatexmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatexmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatexmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatexmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgatris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/mgavb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_bios.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_bios.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_bios.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_bios.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/mga/server/mga_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_dd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texobj.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texobj.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texobj.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texobj.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/r128_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/pci_ids.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/pci_ids.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/pci_ids.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/pci_ids.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_version.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_version.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_version.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r128/server/r128_version.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Doxyfile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Doxyfile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Doxyfile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Doxyfile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_cmdbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_cmdbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_cmdbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_cmdbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_fragshader.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_fragshader.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_fragshader.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_fragshader.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos_arrays.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos_arrays.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos_arrays.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_maos_arrays.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_pixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_sanity.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_state_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_swtcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r200/r200_vertprog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_cmdbuf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_emit.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_fragprog_swizzle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_mem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_shader.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_shader.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_shader.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_shader.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_swtcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r300_vertprog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/r500_fragprog_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_nqssadce.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_alu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_program_pair.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/r300/radeon_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_chipset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_chipset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_chipset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_chipset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_compat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_compat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_compat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_compat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lighting.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lighting.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lighting.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lighting.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_verts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_verts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_verts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_maos_verts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_sanity.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_state_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_swtcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/radeon_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_egl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_egl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_egl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_egl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/radeon/server/radeon_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_inithw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_inithw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_inithw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_inithw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_regs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_regs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_regs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_regs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tritmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tritmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tritmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_tritmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_vb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_xmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_xmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_xmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3v_xmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3virgetri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3virgetri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3virgetri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/s3v/s3virgetri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_3d_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_3d_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_3d_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_3d_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_bci.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_bci.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_bci.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_bci.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_init.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_init.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_init.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_init.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_xmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_xmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_xmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savage_xmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagecontext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagecontext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagecontext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagecontext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagedd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savageioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagerender.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagerender.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagerender.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagerender.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagespan.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagestate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/savagetris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/server/savage_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/server/savage_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/server/savage_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/savage/server/savage_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/server/sis_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_clear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_clear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_clear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_clear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_alloc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_clear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_clear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_clear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_clear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_dd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_fog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_fog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_fog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_fog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_stencil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tritmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tritmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tritmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis_tritmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_priv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_priv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_priv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_priv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_spantemp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_spantemp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_spantemp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/swrast/swrast_spantemp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/dri_glide.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/dri_glide.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/dri_glide.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/dri_glide.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/server/tdfx_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_dd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_glide.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_glide.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_glide.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_glide.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_pixels.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_render.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texman.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_texstate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/tdfx/tdfx_vbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/trident/trident_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_dri.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_driver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_driver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_driver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_driver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_priv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_priv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_priv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_priv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_regs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_regs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_regs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/server/via_regs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_3d_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_3d_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_3d_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_3d_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_drmclient.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_drmclient.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_drmclient.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_drmclient.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_fb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_ioctl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_memcpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_memcpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_memcpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_memcpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_screen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_texcombine.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_texcombine.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_texcombine.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_texcombine.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/dri/unichrome/via_tris.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/glfbdev.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/glfbdev.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/glfbdev.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/fbdev/glfbdev.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi.conf.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi.conf.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi.conf.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi.conf.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_mode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_mode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_mode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_mode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_visual.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_visual.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_visual.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/genkgi_visual.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_15.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_15.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_15.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_15.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_16.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_16.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_16.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_16.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_24.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_24.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_24.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_24.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/linear_8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/stubs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/stubs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/stubs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/default/stubs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev.conf.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev.conf.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev.conf.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev.conf.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_mode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_mode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_mode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_mode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_visual.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_visual.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_visual.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/display/fbdev_visual.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.conf.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.conf.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.conf.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/ggimesa.conf.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/display_fbdev.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/display_fbdev.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/display_fbdev.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/display_fbdev.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/ggi/include/ggi/mesa/ggimesa_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxapi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxapi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxapi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxapi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddspan.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddspan.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddspan.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddspan.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddtex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddtex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddtex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxddtex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdrv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdrv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdrv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxdrv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxglidew.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxsetup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtexman.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtexman.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtexman.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtexman.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtris.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtris.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtris.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxtris.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/glide/fxvbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile.win b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile.win similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile.win rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/Makefile.win diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/osmesa/osmesa.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa15.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa16.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa24.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgamesa8.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgapix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgapix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgapix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/svga/svgapix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxopengl.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxopengl.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxopengl.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxopengl.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxwgl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxwgl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxwgl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/fx/fxwgl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/colors.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/colors.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/colors.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/colors.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/mesa.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/mesa.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/mesa.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/mesa.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wgl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wgl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wgl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wgl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesadef.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesadef.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesadef.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gdi/wmesadef.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/ddlog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglcontext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglglobals.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglmacros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglmacros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglmacros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglmacros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglpf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dglwgl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dll_main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dll_main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dll_main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dll_main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dllmain.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dllmain.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dllmain.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/dllmain.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_clip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_clip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_clip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_clip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_norm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_norm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_norm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_norm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_xform.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_xform.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_xform.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_debug_xform.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gld_driver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gldlame8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gldlame8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gldlame8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/gldlame8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/opengl32.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/opengl32.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/opengl32.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/opengl32.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/pixpack.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/pixpack.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/pixpack.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/gldirect/pixpack.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icdlist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icdlist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icdlist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/icdlist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/mesa.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/mesa.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/mesa.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/windows/icd/mesa.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/fakeglx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/fakeglx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/fakeglx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/fakeglx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxapi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxheader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxheader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxheader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/glxheader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/realglx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xfonts.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_api.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_api.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_api.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_api.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_buffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_buffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_buffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_buffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_glide.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_image.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_line.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_line.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_line.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_line.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_tri.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_tri.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_tri.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xm_tri.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xmesaP.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xmesaP.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xmesaP.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/drivers/x11/xmesaP.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/gl.pc.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/gl.pc.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/gl.pc.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/gl.pc.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/dispatch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/dispatch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/dispatch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/dispatch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapioffsets.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapioffsets.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapioffsets.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapioffsets.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitemp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitemp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitemp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glapitemp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glprocs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glprocs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glprocs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glprocs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/glapi/glthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/accum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_arrayelt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_eval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_eval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_eval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_eval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_loopback.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_noop.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/api_validate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/arrayobj.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/attrib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bitset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bitset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bitset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bitset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/blend.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/bufferobj.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/buffers.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/clip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colormac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colormac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colormac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colormac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/colortab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/convolve.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depth.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/depthstencil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dispatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dispatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dispatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dispatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/dlist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/drawpix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/enums.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/eval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/execmem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/execmem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/execmem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/execmem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/extensions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fbobject.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/feedback.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/fog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/framebuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/get.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/getstring.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/getstring.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/getstring.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/getstring.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/glheader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/glheader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/glheader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/glheader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/hint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/histogram.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/image.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/imports.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/light.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/lines.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/matrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mipmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mtypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mtypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mtypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/mtypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/pixel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/points.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/polygon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/queryobj.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rastpos.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/rbadaptors.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/renderbuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/shaders.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/simple_list.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/simple_list.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/simple_list.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/simple_list.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/state.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/stencil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_fxt1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_fxt1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_fxt1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_fxt1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_s3tc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_s3tc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_s3tc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texcompress_s3tc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texenvprogram.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texformat_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/teximage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texobj.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texrender.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/texstore.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/varray.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/version.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/version.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/version.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/version.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vsnprintf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vsnprintf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vsnprintf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vsnprintf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/main/vtxfmt_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_clip_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_clip_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_clip_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_clip_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_copy_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_copy_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_copy_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_copy_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_clip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_clip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_clip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_clip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_norm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_norm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_norm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_norm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_xform.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_xform.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_xform.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_debug_xform.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_dotprod_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_dotprod_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_dotprod_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_dotprod_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_eval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_matrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_norm_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_norm_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_norm_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_norm_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_trans_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_trans_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_trans_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_trans_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_translate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_vector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/m_xform_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/mathmod.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/mathmod.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/mathmod.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/math/mathmod.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc_features.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc_features.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc_features.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/ppc/common_ppc_features.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogparse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram_syn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram_syn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram_syn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/arbprogram_syn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/atifragshader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_crt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_mesa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_syn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_syn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_syn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/grammar/grammar_syn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvfragparse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvprogram.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/nvvertparse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_execute.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_instruction.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_parameter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_print.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_statevars.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/prog_uniform.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/program.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/programopt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/shader_api.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/gc_to_bin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/gc_to_bin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/gc_to_bin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/gc_to_bin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core.gc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core.gc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core.gc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core.gc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core_gc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core_gc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core_gc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_120_core_gc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common.gc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common.gc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common.gc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common.gc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common_gc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common_gc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common_gc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_common_gc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment.gc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment.gc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment.gc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment.gc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment_gc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment_gc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment_gc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_builtin_120_fragment_gc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin.gc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin.gc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin.gc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin.gc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin_gc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin_gc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin_gc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_common_builtin_gc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core.gc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core.gc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core.gc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core.gc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core_gc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core_gc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core_gc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_core_gc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin.gc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin.gc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin.gc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin.gc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin_gc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin_gc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin_gc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_fragment_builtin_gc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives.syn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives.syn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives.syn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives.syn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives_syn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives_syn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives_syn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_directives_syn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression.syn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression.syn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression.syn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression.syn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression_syn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression_syn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression_syn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_expression_syn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version.syn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version.syn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version.syn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version.syn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version_syn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version_syn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version_syn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_pp_version_syn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader.syn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader.syn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader.syn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader.syn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader_syn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader_syn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader_syn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_shader_syn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version.syn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version.syn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version.syn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version.syn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version_syn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version_syn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version_syn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_version_syn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin.gc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin.gc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin.gc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin.gc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin_gc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin_gc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin_gc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/slang_vertex_builtin_gc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/syn_to_c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/syn_to_c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/syn_to_c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/library/syn_to_c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_builtin.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_codegen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_function.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_operation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_struct.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_compile_variable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_emit.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_ir.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_label.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_library_noise.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_link.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_log.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_mem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_preprocess.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_print.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_simplify.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_storage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_typeinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_utility.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/shader/slang/slang_vartable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sources b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sources similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sources rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sources diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/clip.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/clip.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/clip.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/clip.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/glapi_sparc.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/glapi_sparc.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/glapi_sparc.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/glapi_sparc.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/norm.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/norm.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/norm.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/norm.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc_matrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc_matrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc_matrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/sparc_matrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/xform.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/xform.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/xform.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/sparc/xform.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aaline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aalinetemp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aalinetemp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aalinetemp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aalinetemp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatriangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatritemp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatritemp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatritemp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_aatritemp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_accum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_alpha.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_atifragshader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blend.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_blit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_buffers.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_buffers.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_buffers.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_buffers.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_copypix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_copypix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_copypix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_copypix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_depth.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_drawpix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_feedback.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_fragprog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_imaging.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_imaging.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_imaging.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_imaging.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_lines.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_linetemp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_linetemp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_linetemp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_linetemp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_logic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_masking.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_points.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_readpix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_readpix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_readpix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_readpix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_span.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_spantemp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_spantemp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_spantemp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_spantemp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_stencil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texcombine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texfilter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texstore.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texstore.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texstore.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_texstore.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_triangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_trispan.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_trispan.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_trispan.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_trispan.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_tritemp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_tritemp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_tritemp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_tritemp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/s_zoom.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/swrast.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/swrast.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/swrast.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast/swrast.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_triangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_tritmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_tritmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_tritmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_tritmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_vb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_vb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_vb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/ss_vb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/swrast_setup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/swrast_setup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/swrast_setup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/swrast_setup/swrast_setup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_draw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_draw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_draw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_draw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_pipeline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cliptmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cliptmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cliptmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cliptmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cull.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cull.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cull.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_cull.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_fog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_fog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_fog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_fog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_light.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_light.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_light.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_light.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_lighttmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_lighttmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_lighttmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_lighttmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_normals.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_normals.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_normals.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_normals.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_points.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_points.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_points.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_points.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_program.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_program.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_program.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_program.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_render.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_render.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_render.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_render.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_rendertmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_rendertmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_rendertmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_rendertmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texgen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texgen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texgen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texgen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texmat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texmat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texmat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_texmat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_vertex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_vertex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_vertex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vb_vertex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_generic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_generic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_generic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_generic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_sse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_sse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_sse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vertex_sse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/t_vp_build.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/tnl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/tnl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/tnl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl/tnl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/NOTES.imm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/NOTES.imm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/NOTES.imm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/NOTES.imm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_capi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_capi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_capi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_capi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_napi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_napi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_napi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_napi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_primtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_primtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_primtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_primtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_tapi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_tapi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_tapi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_tapi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vapi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vapi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vapi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vapi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/imm/t_dd_imm_vbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_dmatmp2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_rendertmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_rendertmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_rendertmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_rendertmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_triemit.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_triemit.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_triemit.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_triemit.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_tritmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_tritmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_tritmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_tritmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_unfilled.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_unfilled.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_unfilled.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_unfilled.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vbtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vbtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vbtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vbtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vertex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vertex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vertex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/tnl_dd/t_dd_vertex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib_tmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib_tmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib_tmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_attrib_tmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_context.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_api.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_api.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_api.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_api.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_array.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_array.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_array.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_array.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_draw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_draw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_draw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_draw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_exec_eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_rebase.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_rebase.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_rebase.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_rebase.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_api.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_api.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_api.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_api.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_draw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_draw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_draw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_draw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_loopback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_loopback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_loopback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_save_loopback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_copy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_copy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_copy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_copy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_inplace.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_inplace.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_inplace.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/vbo/vbo_split_inplace.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/glapi_x86-64.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/glapi_x86-64.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/glapi_x86-64.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/glapi_x86-64.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/x86-64.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/xform4.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/xform4.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/xform4.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86-64/xform4.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_normal.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_normal.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_normal.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_normal.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform1.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform1.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform1.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform1.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform2.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform2.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform2.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform2.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform3.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform3.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform3.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform3.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform4.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform4.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform4.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/3dnow_xform4.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/assyntax.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/assyntax.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/assyntax.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/assyntax.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/clip_args.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/clip_args.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/clip_args.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/clip_args.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_asm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_features.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_features.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_features.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_features.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/common_x86_macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/gen_matypes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/gen_matypes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/gen_matypes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/gen_matypes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/glapi_x86.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/glapi_x86.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/glapi_x86.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/glapi_x86.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blend.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blend.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blend.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blend.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blendtmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blendtmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blendtmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/mmx_blendtmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/norm_args.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/norm_args.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/norm_args.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/norm_args.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/read_rgba_span_x86.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/rtasm/x86sse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_normal.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_normal.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_normal.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_normal.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform1.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform1.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform1.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform1.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform2.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform2.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform2.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform2.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform3.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform3.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform3.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform3.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform4.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform4.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform4.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/sse_xform4.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_cliptest.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_cliptest.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_cliptest.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_cliptest.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform2.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform2.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform2.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform2.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform3.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform3.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform3.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform3.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform4.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform4.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform4.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/x86_xform4.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/xform_args.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/xform_args.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/xform_args.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/src/mesa/x86/xform_args.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/analyze_map.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/analyze_map.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/analyze_map.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/analyze_map.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib_share.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib_share.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib_share.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/vms/xlib_share.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC6/progs/glut/glut.dsp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC6/progs/glut/glut.dsp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC6/progs/glut/glut.dsp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC6/progs/glut/glut.dsp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC7/progs/glut/glut.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC7/progs/glut/glut.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC7/progs/glut/glut.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC7/progs/glut/glut.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/gdi/gdi.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/gdi/gdi.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/gdi/gdi.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/gdi/gdi.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/glu/glu.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/glu/glu.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/glu/glu.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/glu/glu.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa/mesa.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa/mesa.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa/mesa.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/mesa/mesa.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/osmesa/osmesa.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/osmesa/osmesa.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/osmesa/osmesa.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/mesa/osmesa/osmesa.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/demos/gears.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/demos/gears.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/demos/gears.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/demos/gears.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/glut/glut.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/glut/glut.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/glut/glut.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/glut/glut.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/progs.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/progs.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/progs.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/src/windows/VC8/progs/progs.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/mesa/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.CARBON b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.CARBON similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.CARBON rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.CARBON diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.POSIX_BARRIER b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.POSIX_BARRIER similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.POSIX_BARRIER rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/c.m4.null.POSIX_BARRIER diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.pthreads.c.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.pthreads.c.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.pthreads.c.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.pthreads.c.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.serial.c.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.serial.c.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.serial.c.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/src/m4/parmacs.serial.c.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/parmacs/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES.SSLeay b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES.SSLeay similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES.SSLeay rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/CHANGES.SSLeay diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Configure.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Configure.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Configure.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Configure.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/FAQ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/FAQ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/FAQ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/FAQ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.DJGPP b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.DJGPP similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.DJGPP rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.DJGPP diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.MacOS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.MacOS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.MacOS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.MacOS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.NW b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.NW similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.NW rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.NW diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.OS2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.OS2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.OS2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.OS2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.VMS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.VMS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.VMS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.VMS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W32 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W32 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W32 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W32 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W64 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W64 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W64 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.W64 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.WCE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.WCE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.WCE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/INSTALL.WCE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GUSI_Init.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GUSI_Init.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GUSI_Init.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GUSI_Init.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/CPStringUtils.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/ErrorHandling.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/GetHTTPS.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/GetHTTPS.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/GetHTTPS.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/GetHTTPS.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/GetHTTPS.src/MacSocket.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/OpenSSL.mcp.hqx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/OpenSSL.mcp.hqx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/OpenSSL.mcp.hqx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/OpenSSL.mcp.hqx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/Randomizer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_GUSI_prefix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_GUSI_prefix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_GUSI_prefix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_GUSI_prefix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_prefix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_prefix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_prefix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/_MWERKS_prefix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/buildinf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/buildinf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/buildinf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/buildinf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/mklinks.as.hqx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/mklinks.as.hqx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/mklinks.as.hqx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/mklinks.as.hqx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/opensslconf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/opensslconf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/opensslconf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/MacOS/opensslconf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.org b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.org similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.org rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.org diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.shared b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.shared similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.shared rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Makefile.shared diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/build.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/build.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/build.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/build.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/cpy_tests.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/cpy_tests.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/cpy_tests.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/cpy_tests.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/do_tests.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/do_tests.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/do_tests.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/do_tests.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/globals.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/globals.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/globals.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/globals.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/set_env.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/set_env.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/set_env.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/Netware/set_env.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/PROBLEMS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/PROBLEMS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/PROBLEMS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/PROBLEMS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ASN1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ASN1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ASN1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ASN1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ENGINE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ENGINE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ENGINE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/README.ENGINE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/VMSify-conf.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/VMSify-conf.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/VMSify-conf.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/VMSify-conf.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/WISHLIST.TXT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/WISHLIST.TXT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/WISHLIST.TXT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/WISHLIST.TXT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/install.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/install.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/install.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/install.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/mkshared.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/mkshared.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/mkshared.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/mkshared.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/multinet_shr.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/multinet_shr.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/multinet_shr.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/multinet_shr.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/openssl_utils.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/openssl_utils.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/openssl_utils.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/openssl_utils.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/socketshr_shr.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/socketshr_shr.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/socketshr_shr.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/socketshr_shr.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/tcpip_shr_decc.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/tcpip_shr_decc.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/tcpip_shr_decc.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/tcpip_shr_decc.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/test-includes.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/test-includes.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/test-includes.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/test-includes.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc_log.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc_log.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc_log.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_decc_log.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_vaxc.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_vaxc.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_vaxc.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/VMS/ucx_shr_vaxc.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.pl.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/CA.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/app_rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/app_rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/app_rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/app_rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/apps.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/asn1pars.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/asn1pars.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/asn1pars.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/asn1pars.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-cert.srl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-cert.srl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-cert.srl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-cert.srl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-key.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-key.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-key.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-key.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-req.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-req.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-req.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca-req.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ca.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cert.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cert.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cert.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cert.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ciphers.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ciphers.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ciphers.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ciphers.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/client.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/client.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/client.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/client.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cms.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cms.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cms.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/cms.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl2p7.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl2p7.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl2p7.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/crl2p7.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/cacert.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/cacert.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/cacert.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/cacert.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/index.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/index.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/index.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/index.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/private/cakey.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/private/cakey.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/private/cakey.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/private/cakey.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/serial b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/serial similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/serial rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/demoCA/serial diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh1024.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh1024.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh1024.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh1024.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh2048.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh2048.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh2048.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh2048.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh4096.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh4096.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh4096.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh4096.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh512.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh512.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh512.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dh512.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dhparam.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dhparam.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dhparam.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dhparam.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-ca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-ca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-ca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-ca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-pca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-pca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-pca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa-pca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa1024.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa1024.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa1024.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa1024.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa512.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa512.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa512.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsa512.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsap.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsap.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsap.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsap.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsaparam.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsaparam.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsaparam.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/dsaparam.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ecparam.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ecparam.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ecparam.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ecparam.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/engine.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/engine.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/engine.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/engine.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/errstr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/errstr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/errstr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/errstr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/gendsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/genrsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/genrsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/genrsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/genrsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/install.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/install.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/install.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/install.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/makeapps.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/makeapps.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/makeapps.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/makeapps.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/nseq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/nseq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/nseq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/nseq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ocsp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ocsp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ocsp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/ocsp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/oid.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/oid.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/oid.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/oid.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl-vms.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl-vms.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl-vms.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl-vms.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/openssl.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/passwd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/passwd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/passwd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/passwd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-cert.srl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-cert.srl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-cert.srl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-cert.srl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-key.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-key.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-key.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-key.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-req.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-req.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-req.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pca-req.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs12.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs12.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs12.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs12.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs7.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs7.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs7.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs7.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/pkcs8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/prime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/prime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/prime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/prime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/privkey.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/privkey.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/privkey.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/privkey.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/progs.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/req.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa8192.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa8192.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa8192.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsa8192.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsautl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsautl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsautl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/rsautl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024key.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024key.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024key.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024key.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024req.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024req.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024req.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s1024req.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-key.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-key.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-key.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-key.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-req.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-req.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-req.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s512-req.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_apps.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_apps.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_apps.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_apps.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_cb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_cb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_cb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_cb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_client.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_client.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_client.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_client.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_server.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_server.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_server.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_server.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_socket.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_socket.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_socket.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_socket.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_time.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_time.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_time.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/s_time.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.srl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.srl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.srl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server.srl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server2.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server2.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server2.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/server2.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/sess_id.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/sess_id.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/sess_id.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/sess_id.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-g-ca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-g-ca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-g-ca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-g-ca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-m-ca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-m-ca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-m-ca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set-m-ca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_b_ca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_b_ca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_b_ca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_b_ca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_c_ca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_c_ca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_c_ca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_c_ca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_d_ct.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_d_ct.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_d_ct.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_d_ct.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_root.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_root.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_root.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/set/set_root.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/smime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/smime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/smime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/smime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/speed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/speed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/speed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/speed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/spkac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/spkac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/spkac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/spkac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testCA.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testCA.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testCA.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testCA.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testdsa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testdsa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testdsa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testdsa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testrsa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testrsa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testrsa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/testrsa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/timeouts.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/timeouts.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/timeouts.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/timeouts.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/verify.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/verify.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/verify.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/verify.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/version.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/version.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/version.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/version.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/winrand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/winrand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/winrand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/winrand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/x509.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/x509.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/x509.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/apps/x509.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/MS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/MS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/MS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/MS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/SSLv3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/SSLv3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/SSLv3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/SSLv3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/alpha.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/alpha.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/alpha.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/alpha.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/dggccbug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/dggccbug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/dggccbug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/dggccbug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sgiccbug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sgiccbug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sgiccbug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sgiccbug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sslref.dif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sslref.dif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sslref.dif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/sslref.dif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/stream.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/stream.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/stream.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/stream.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/ultrixcc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/ultrixcc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/ultrixcc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/bugs/ultrixcc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/README.RootCerts b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/README.RootCerts similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/README.RootCerts rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/README.RootCerts diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/ca-cert.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/ca-cert.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/ca-cert.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/ca-cert.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-ca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-ca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-ca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-ca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-pca.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-pca.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-pca.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/dsa-pca.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/pca-cert.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/pca-cert.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/pca-cert.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/demo/pca-cert.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/expired/ICE.crl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/expired/ICE.crl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/expired/ICE.crl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/certs/expired/ICE.crl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_nyi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_nyi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_nyi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_nyi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_unix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_unix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_unix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_unix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_vms.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_vms.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_vms.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_vms.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_win32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_wince.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_wince.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_wince.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/LPdir_wince.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cbc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cbc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cbc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cbc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cfb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cfb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cfb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_cfb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_core.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_core.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_core.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_core.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ctr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ctr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ctr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ctr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ige.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ige.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ige.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ige.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_misc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_misc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_misc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_misc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ofb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ofb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ofb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_ofb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_wrap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_wrap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_wrap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/aes_wrap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-ia64.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-ia64.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-ia64.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-ia64.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-x86_64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-x86_64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-x86_64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/aes/asm/aes-x86_64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bitstr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bitstr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bitstr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bitstr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bool.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bool.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bool.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bool.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bytes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bytes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bytes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_bytes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_d2i_fp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_d2i_fp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_d2i_fp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_d2i_fp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_digest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_digest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_digest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_digest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_dup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_dup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_dup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_dup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_enum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_enum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_enum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_enum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_gentm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_gentm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_gentm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_gentm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_hdr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_hdr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_hdr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_hdr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_i2d_fp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_i2d_fp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_i2d_fp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_i2d_fp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_mbstr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_mbstr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_mbstr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_mbstr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_meth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_meth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_meth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_meth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_object.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_object.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_object.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_object.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_octet.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_octet.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_octet.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_octet.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_set.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_set.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_set.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_set.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strnid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strnid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strnid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_strnid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_time.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_time.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_time.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_time.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_type.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_type.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_type.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_type.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utctm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utctm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utctm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utctm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utf8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utf8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utf8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_utf8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_verify.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_verify.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_verify.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/a_verify.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_mac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_mac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_mac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_mac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_par.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_par.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_par.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1_par.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1t.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1t.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1t.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn1t.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_mime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_mime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_mime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_mime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_moid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_moid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_moid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_moid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_pack.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_pack.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_pack.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/asn_pack.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/charmap.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/d2i_pu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/evp_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/evp_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/evp_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/evp_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_enum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_enum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_enum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_enum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_string.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_string.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_string.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/f_string.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/i2d_pu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/n_pkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/n_pkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/n_pkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/n_pkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/nsseq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/nsseq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/nsseq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/nsseq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbe.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbe.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbe.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbe.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbev2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbev2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbev2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p5_pbev2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_pkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_pkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_pkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/p8_pkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_bitst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_bitst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_bitst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_bitst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_crl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_crl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_crl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_crl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_pkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_pkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_pkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_pkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_req.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_req.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_req.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_req.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_spki.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_spki.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_spki.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_spki.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509a.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509a.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509a.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/t_x509a.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_dec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_dec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_dec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_dec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_fre.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_fre.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_fre.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_fre.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_new.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_new.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_new.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_new.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_prn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_prn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_prn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_prn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_typ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_typ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_typ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_typ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_utl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_utl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_utl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/tasn_utl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_algor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_algor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_algor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_algor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_attrib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_attrib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_attrib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_attrib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_bignum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_bignum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_bignum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_bignum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_crl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_crl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_crl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_crl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_exten.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_exten.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_exten.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_exten.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_long.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_long.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_long.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_long.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_name.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_name.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_name.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_name.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pubkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pubkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pubkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_pubkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_req.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_req.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_req.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_req.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_sig.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_sig.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_sig.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_sig.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_spki.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_spki.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_spki.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_spki.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_val.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_val.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_val.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_val.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509a.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509a.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509a.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/asn1/x_x509a.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/VERSION b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/VERSION similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/VERSION rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/VERSION diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-686.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-686.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-686.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/bf-686.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/readme b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/readme similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/readme rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/asm/readme diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cbc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cbc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cbc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cbc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cfb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cfb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cfb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_cfb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ofb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ofb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ofb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_ofb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_opts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_opts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_opts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_opts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_pi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_pi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_pi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_pi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_skey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_skey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_skey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bf_skey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfs.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfs.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfs.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfs.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfspeed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfspeed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfspeed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bfspeed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/bftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/blowfish.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/blowfish.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/blowfish.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bf/blowfish.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_dump.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_dump.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_dump.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_dump.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_sock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_sock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_sock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/b_sock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_buff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_buff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_buff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_buff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_lbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_lbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_lbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_lbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_nbio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_nbio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_nbio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_nbio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_null.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_null.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_null.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bf_null.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_cb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_cb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_cb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_cb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bio_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_acpt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_acpt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_acpt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_acpt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_bio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_bio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_bio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_bio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_conn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_conn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_conn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_conn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_dgram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_dgram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_dgram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_dgram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_fd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_fd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_fd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_fd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_log.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_log.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_log.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_log.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_mem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_mem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_mem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_mem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_null.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_null.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_null.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_null.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_rtcp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_rtcp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_rtcp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_rtcp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_sock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_sock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_sock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bio/bss_sock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/bn-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/bn-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/bn-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/bn-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/co-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/co-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/co-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/co-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ia64.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ia64.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ia64.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ia64.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mips3.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mips3.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mips3.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mips3.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mo-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mo-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mo-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/mo-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2W.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2W.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2W.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/pa-risc2W.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ppc.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ppc.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ppc.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/ppc.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8plus.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8plus.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8plus.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/sparcv8plus.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/vms.mar b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/vms.mar similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/vms.mar rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/vms.mar diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/add.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/add.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/add.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/add.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/comba.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/comba.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/comba.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/comba.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/div.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/div.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/div.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/div.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/f b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/f similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/f rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/f diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul_add.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul_add.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul_add.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/mul_add.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sqr.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sqr.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sqr.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sqr.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sub.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sub.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sub.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86/sub.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-gcc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-gcc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-gcc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-gcc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-mont.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-mont.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-mont.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/asm/x86_64-mont.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.mul b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.mul similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.mul rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn.mul diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_add.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_add.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_add.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_add.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_asm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_asm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_asm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_asm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_blind.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_blind.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_blind.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_blind.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_const.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_const.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_const.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_const.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_ctx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_ctx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_ctx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_ctx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_depr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_depr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_depr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_depr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_div.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_div.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_div.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_div.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_exp2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gcd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gcd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gcd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gcd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gf2m.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gf2m.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gf2m.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_gf2m.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_kron.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_kron.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_kron.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_kron.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mod.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mod.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mod.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mod.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mont.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mont.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mont.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mont.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mpi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mpi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mpi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mpi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mul.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mul.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mul.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_mul.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_nist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_nist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_nist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_nist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_opt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_opt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_opt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_opt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_prime.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_recp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_recp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_recp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_recp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_shift.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_shift.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_shift.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_shift.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqrt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqrt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqrt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_sqrt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_word.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_word.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_word.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_word.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_x931p.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_x931p.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_x931p.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bn_x931p.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bnspeed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bnspeed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bnspeed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bnspeed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bntest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bntest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bntest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/bntest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/divtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/divtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/divtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/divtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/expspeed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/expspeed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/expspeed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/expspeed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exptest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exptest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exptest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/exptest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/todo b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/todo similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/todo rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/todo diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/vms-helper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/vms-helper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/vms-helper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/bn/vms-helper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_str.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_str.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_str.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buf_str.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/buffer/buffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/camellia.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cbc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cbc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cbc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cbc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cfb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cfb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cfb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_cfb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ctr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ctr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ctr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ctr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_misc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_misc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_misc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_misc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ofb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ofb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ofb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/camellia/cmll_ofb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/cast-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/cast-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/cast-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/cast-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/readme b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/readme similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/readme rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/asm/readme diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_cfb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_cfb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_cfb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_cfb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ofb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ofb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ofb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_ofb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_skey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_skey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_skey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/c_skey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_s.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_s.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_s.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_s.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_spd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_spd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_spd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/cast_spd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/castopts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/castopts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/castopts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/castopts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casts.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casts.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casts.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casts.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casttest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casttest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casttest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cast/casttest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_att.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_att.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_att.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_att.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_cd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_cd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_cd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_cd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_dd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_dd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_dd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_dd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_env.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_env.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_env.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_env.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_ess.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_ess.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_ess.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_ess.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_io.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_io.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_io.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_io.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_sd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_sd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_sd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_sd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_smime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_smime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_smime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cms/cms_smime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_rle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_rle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_rle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_rle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_zlib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_zlib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_zlib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/c_zlib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/comp/comp_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/cnf_save.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/cnf_save.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/cnf_save.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/cnf_save.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_api.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_def.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mall.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mall.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mall.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mall.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mod.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mod.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mod.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_mod.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_sap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_sap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_sap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/conf_sap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/keysets.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/keysets.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/keysets.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/keysets.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/ssleay.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/ssleay.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/ssleay.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/ssleay.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/conf/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cpt_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cpt_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cpt_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cpt_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cryptlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto-lib.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto-lib.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto-lib.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto-lib.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/crypto.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cversion.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cversion.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cversion.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/cversion.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.pm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.pm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.pm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.pm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.xs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.xs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.xs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/DES.xs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/FILES0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/FILES0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/FILES0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/FILES0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Imakefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Imakefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Imakefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Imakefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/KERBEROS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/KERBEROS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/KERBEROS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/KERBEROS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/VERSION b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/VERSION similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/VERSION rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/VERSION diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/crypt586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/crypt586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/crypt586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/crypt586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des686.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des686.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des686.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des686.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des_enc.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des_enc.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des_enc.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/des_enc.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/desboth.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/desboth.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/desboth.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/desboth.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/readme b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/readme similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/readme rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/asm/readme diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc3_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc3_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc3_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc3_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_cksm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_cksm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_cksm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_cksm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cbc_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64ede.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64ede.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64ede.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64ede.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb64enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/cfb_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des-lib.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des-lib.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des-lib.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des-lib.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des3s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des3s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des3s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des3s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_old2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_opts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_opts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_opts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_opts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_ver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_ver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_ver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/des_ver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/dess.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/dess.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/dess.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/dess.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/destest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/destest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/destest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/destest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb3_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb3_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb3_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb3_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ecb_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ede_cbcm_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ede_cbcm_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ede_cbcm_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ede_cbcm_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_read.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_read.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_read.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_read.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_writ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_writ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_writ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/enc_writ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt_b.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt_b.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt_b.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/fcrypt_b.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/makefile.bc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/makefile.bc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/makefile.bc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/makefile.bc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ncbc_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ncbc_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ncbc_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ncbc_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64ede.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64ede.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64ede.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64ede.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb64enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/ofb_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/options.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/options.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/options.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/options.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/pcbc_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/pcbc_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/pcbc_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/pcbc_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/qud_cksm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/qud_cksm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/qud_cksm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/qud_cksm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rand_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rand_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rand_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rand_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read2pwd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read2pwd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read2pwd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read2pwd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read_pwd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read_pwd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read_pwd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/read_pwd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_des.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_des.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_des.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_des.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpc_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/rpw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/set_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/set_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/set_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/set_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/speed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/speed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/speed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/speed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/spr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/spr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/spr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/spr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/str2key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/str2key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/str2key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/str2key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/t/test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/t/test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/t/test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/t/test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/486-50.sol b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/486-50.sol similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/486-50.sol rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/486-50.sol diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/586-100.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/586-100.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/586-100.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/586-100.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/686-200.fre b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/686-200.fre similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/686-200.fre rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/686-200.fre diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/aix.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/aix.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/aix.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/aix.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/alpha.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/alpha.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/alpha.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/alpha.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/hpux.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/hpux.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/hpux.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/hpux.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/sparc.gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/sparc.gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/sparc.gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/sparc.gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/usparc.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/usparc.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/usparc.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/times/usparc.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/typemap b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/typemap similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/typemap rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/typemap diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/xcbc_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/xcbc_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/xcbc_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/des/xcbc_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh1024.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh1024.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh1024.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh1024.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh192.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh192.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh192.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh192.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh2048.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh2048.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh2048.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh2048.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh4096.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh4096.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh4096.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh4096.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh512.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh512.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh512.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh512.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_check.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_check.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_check.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_check.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_depr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_depr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_depr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_depr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dh_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dhtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dhtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dhtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/dhtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/example b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/example similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/example rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/example diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/generate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/generate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/generate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/generate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p1024.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p1024.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p1024.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p1024.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p192.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p192.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p192.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p192.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p512.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p512.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p512.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dh/p512.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_depr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_depr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_depr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_depr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_ossl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_ossl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_ossl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_ossl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_utl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_utl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_utl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_utl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_vrf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_vrf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_vrf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsa_vrf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsagen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsagen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsagen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsagen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsatest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsatest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsatest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/dsatest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/fips186a.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/fips186a.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/fips186a.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dsa/fips186a.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dlfcn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dlfcn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dlfcn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_dlfcn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_null.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_null.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_null.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_null.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_openssl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_openssl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_openssl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_openssl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_vms.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_vms.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_vms.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_vms.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_win32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_win32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_win32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dso/dso_win32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dyn_lck.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dyn_lck.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dyn_lck.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/dyn_lck.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ebcdic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_mult.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_mult.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_mult.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_mult.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec2_smpt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_check.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_check.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_check.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_check.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_curve.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_curve.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_curve.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_curve.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_cvt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_cvt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_cvt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_cvt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_mult.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_mult.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_mult.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_mult.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_print.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_print.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_print.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ec_print.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_mont.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_mont.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_mont.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_mont.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_nist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_nist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_nist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_nist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_smpl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_smpl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_smpl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ecp_smpl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ectest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ectest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ectest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ec/ectest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdh.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdh.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdh.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdh.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdhtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdhtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdhtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ecdhtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_ossl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_ossl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_ossl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdh/ech_ossl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsatest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsatest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsatest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecdsatest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_ossl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_ossl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_ossl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_ossl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_vrf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_vrf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_vrf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ecdsa/ecs_vrf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_all.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_all.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_all.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_all.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cnf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cnf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cnf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cnf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cryptodev.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cryptodev.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cryptodev.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_cryptodev.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_ctrl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_ctrl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_ctrl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_ctrl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_dyn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_dyn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_dyn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_dyn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_fat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_fat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_fat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_fat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_list.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_list.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_list.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_list.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_openssl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_openssl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_openssl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_openssl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_padlock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_padlock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_padlock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_padlock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_pkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_pkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_pkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_pkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_table.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_table.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_table.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/eng_table.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/engine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/engine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/engine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/engine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/enginetest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/enginetest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/enginetest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/enginetest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_cipher.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_cipher.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_cipher.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_cipher.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_digest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_digest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_digest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_digest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_dsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_ecdsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_rsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_store.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_store.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_store.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/engine/tb_store.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_all.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_all.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_all.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_all.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_bio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_bio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_bio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_bio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_def.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_def.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_def.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_def.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_prn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_prn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_prn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_prn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_str.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_str.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_str.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/err_str.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/openssl.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/openssl.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/openssl.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/err/openssl.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_b64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_b64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_b64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_b64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_md.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_md.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_md.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_md.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_ok.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_ok.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_ok.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/bio_ok.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_all.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_all.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_all.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_all.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_allc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_allc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_allc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_allc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_alld.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_alld.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_alld.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/c_alld.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/dig_eng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/dig_eng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/dig_eng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/dig_eng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/digest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/digest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/digest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/digest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_aes.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_aes.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_aes.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_aes.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_bf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_bf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_bf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_bf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_camellia.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_camellia.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_camellia.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_camellia.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_cast.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_cast.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_cast.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_cast.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_des3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_dsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_dsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_dsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_dsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_idea.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_idea.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_idea.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_idea.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_null.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_null.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_null.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_null.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_old.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_old.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_old.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_old.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_rc5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_seed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_seed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_seed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_seed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_xcbc_d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_xcbc_d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_xcbc_d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/e_xcbc_d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/enc_min.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/enc_min.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/enc_min.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/enc_min.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/encode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/encode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/encode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/encode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_acnf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_acnf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_acnf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_acnf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_cnf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_cnf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_cnf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_cnf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pbe.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pbe.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pbe.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pbe.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_pkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evp_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evptests.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evptests.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evptests.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/evptests.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_dss1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ecdsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ecdsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ecdsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ecdsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_md5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_mdc2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_mdc2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_mdc2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_mdc2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_null.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_null.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_null.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_null.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ripemd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ripemd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ripemd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_ripemd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/m_sha1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/names.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/names.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/names.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/names.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/openbsd_hw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/openbsd_hw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/openbsd_hw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/openbsd_hw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p5_crpt2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_dec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_dec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_dec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_dec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_open.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_open.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_open.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_open.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_seal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_seal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_seal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_seal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_verify.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_verify.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_verify.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/evp/p_verify.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ex_data.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ex_data.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ex_data.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ex_data.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/fips_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmactest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmactest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmactest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/hmac/hmactest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ia64cpuid.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ia64cpuid.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ia64cpuid.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ia64cpuid.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cbc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cbc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cbc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cbc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cfb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cfb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cfb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_cfb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ofb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ofb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ofb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_ofb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_skey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_skey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_skey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/i_skey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_spd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_spd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_spd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/idea_spd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/ideatest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/ideatest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/ideatest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/ideatest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/idea/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/install.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/install.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/install.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/install.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpake_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpaketest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpaketest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpaketest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/jpake/jpaketest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/krb5/krb5_asn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_stats.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_stats.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_stats.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_stats.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lh_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/lhash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/num.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/num.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/num.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/lhash/num.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_one.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_one.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_one.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2_one.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md2/md2test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md32_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md32_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md32_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md32_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_one.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_one.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_one.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4_one.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md4/md4test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-x86_64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-x86_64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-x86_64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/asm/md5-x86_64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_one.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_one.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_one.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5_one.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/md5/md5test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2_one.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2_one.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2_one.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2_one.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mdc2/mdc2test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_clr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_clr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_clr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_clr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_dbg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_dbg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_dbg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/mem_dbg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_dir_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_str.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/o_time.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/o_names.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/o_names.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/o_names.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/o_names.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_dat.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.num b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.num similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.num rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/obj_mac.num diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/objects/objects.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_asn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_asn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_asn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_asn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_cl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_cl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_cl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_cl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ht.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ht.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ht.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_ht.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_prn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_prn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_prn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_prn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_srv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_srv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_srv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_srv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_vfy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_vfy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_vfy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ocsp/ocsp_vfy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslconf.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/opensslv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ossl_typ.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ossl_typ.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ossl_typ.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ossl_typ.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/message b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/message similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/message rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/message diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_all.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_all.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_all.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_all.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_oth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_oth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_oth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_oth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pk8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pk8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pk8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pk8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pkey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pkey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pkey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_pkey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_seal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_seal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_seal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_seal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_x509.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_x509.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_x509.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_x509.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_xaux.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_xaux.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_xaux.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pem_xaux.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pkcs7.lis b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pkcs7.lis similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pkcs7.lis rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pem/pkcs7.lis diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/cbc.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/cbc.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/cbc.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/cbc.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/readme b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/readme similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/readme rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/readme diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86_64-xlate.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86_64-xlate.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86_64-xlate.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86_64-xlate.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86asm.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86asm.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86asm.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86asm.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86ms.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86ms.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86ms.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86ms.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86nasm.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86nasm.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86nasm.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86nasm.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86unix.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86unix.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86unix.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/perlasm/x86unix.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_add.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_add.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_add.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_add.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_asn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_asn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_asn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_asn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_attr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_attr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_attr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_attr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crpt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crpt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crpt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crpt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_crt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_decr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_decr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_decr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_decr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_kiss.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_kiss.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_kiss.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_kiss.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_mutl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_mutl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_mutl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_mutl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_npas.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_npas.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_npas.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_npas.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8e.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8e.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8e.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_p8e.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_utl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_utl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_utl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/p12_utl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pk12err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pk12err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pk12err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pk12err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pkcs12.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pkcs12.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pkcs12.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs12/pkcs12.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/bio_ber.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/bio_ber.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/bio_ber.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/bio_ber.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/dec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/dec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/dec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/dec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/des.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/des.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/des.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/des.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/doc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/doc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/doc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/doc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/es1.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/es1.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/es1.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/es1.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/example.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/info.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/info.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/info.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/info.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/infokey.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/infokey.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/infokey.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/infokey.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/a2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/cert.p7c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/cert.p7c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/cert.p7c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/cert.p7c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7m b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7m similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7m rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7m diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/p7/smime.p7s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_attr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_attr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_attr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_attr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_doit.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_doit.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_doit.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_doit.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_mime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_mime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_mime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_mime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_smime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_smime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_smime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pk7_smime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/pkcs7err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/server.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/server.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/server.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/server.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3des.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3des.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3des.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3des.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3dess.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3dess.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3dess.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/3dess.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/c.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/c.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/c.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/c.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/ff b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/ff similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/ff rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/ff diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-e.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-01.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-enc-02.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/msie-s-a-e.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/nav-smime b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/nav-smime similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/nav-smime rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/nav-smime diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/s.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/s.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/s.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/s.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/server.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/server.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/server.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/t/server.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/verify.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/verify.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/verify.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pkcs7/verify.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_compat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_compat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_compat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_compat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pq_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/pqueue/pqueue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/md_rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/md_rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/md_rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/md_rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_egd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_egd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_egd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_egd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_eng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_eng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_eng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_eng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_nw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_nw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_nw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_nw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_os2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_os2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_os2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_os2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_unix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_unix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_unix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_unix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_vms.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_vms.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_vms.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_vms.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_win.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_win.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_win.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/rand_win.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randfile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randfile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randfile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randfile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rand/randtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_cbc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_cbc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_cbc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_cbc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_skey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_skey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_skey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2_skey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2cfb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2cfb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2cfb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2cfb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2ofb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2ofb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2ofb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2ofb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2speed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2speed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2speed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2speed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rc2test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rrc2.doc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rrc2.doc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rrc2.doc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/rrc2.doc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/tab.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/tab.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/tab.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/tab.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc2/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-ia64.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-ia64.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-ia64.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-ia64.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-x86_64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-x86_64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-x86_64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/asm/rc4-x86_64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_fblk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_fblk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_fblk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_fblk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_skey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_skey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_skey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4_skey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4speed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4speed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4speed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4speed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rc4test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rrc4.doc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rrc4.doc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rrc4.doc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc4/rrc4.doc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/asm/rc5-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/asm/rc5-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/asm/rc5-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/asm/rc5-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_skey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_skey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_skey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5_skey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5cfb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5cfb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5cfb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5cfb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5ofb64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5ofb64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5ofb64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5ofb64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5speed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5speed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5speed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5speed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rc5/rc5test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rips.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rips.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rips.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rips.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rmd-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rmd-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rmd-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/asm/rmd-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/ripemd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/ripemd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/ripemd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/ripemd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd160.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd160.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd160.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd160.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_one.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_one.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_one.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmd_one.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdconst.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdconst.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdconst.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdconst.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ripemd/rmdtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_chk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_chk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_chk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_chk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_depr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_depr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_depr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_depr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eng.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eng.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eng.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_eng.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_none.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_none.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_none.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_none.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_null.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_null.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_null.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_null.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_oaep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_oaep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_oaep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_oaep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pk1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pk1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pk1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pk1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pss.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pss.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pss.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_pss.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_saos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_saos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_saos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_saos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_ssl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_ssl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_ssl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_ssl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931g.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931g.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931g.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/rsa/rsa_x931g.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cbc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cbc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cbc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cbc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cfb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cfb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cfb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_cfb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ecb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ecb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ecb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ecb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ofb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ofb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ofb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/seed/seed_ofb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-586.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-586.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-586.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-586.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-ia64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-ia64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-ia64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-ia64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-x86_64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-x86_64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-x86_64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha1-x86_64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-ia64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-ia64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-ia64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-ia64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-sse2.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-sse2.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-sse2.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-sse2.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-x86_64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-x86_64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-x86_64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/asm/sha512-x86_64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1_one.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1_one.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1_one.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1_one.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha1test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256t.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256t.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256t.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha256t.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512t.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512t.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512t.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha512t.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_dgst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_dgst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_dgst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_dgst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_one.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_one.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_one.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/sha_one.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/shatest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/shatest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/shatest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sha/shatest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sparccpuid.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sparccpuid.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sparccpuid.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/sparccpuid.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/safestack.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/safestack.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/safestack.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/safestack.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/stack/stack.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/store.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/store.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/store.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/store.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_mem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_mem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_mem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_mem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_meth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_meth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_meth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/store/str_meth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/symhacks.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/symhacks.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/symhacks.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/symhacks.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/mttest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/mttest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/mttest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/mttest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/netware.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/netware.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/netware.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/netware.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/profile.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/profile.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/profile.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/profile.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/ptest.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/ptest.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/ptest.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/ptest.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread2.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread2.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread2.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthread2.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthreads-vms.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthreads-vms.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthreads-vms.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/pthreads-vms.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/purify.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/purify.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/purify.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/purify.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/solaris.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/solaris.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/solaris.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/solaris.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/th-lock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/th-lock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/th-lock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/th-lock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/win32.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/win32.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/win32.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/threads/win32.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/tmdiff.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/txt_db/txt_db.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_compat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_openssl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_openssl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_openssl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_openssl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/ui/ui_util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/uid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/uid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/uid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/uid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_dir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_dir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_dir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_dir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/by_file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_att.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_att.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_att.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_att.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_cmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_cmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_cmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_cmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_d2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_d2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_d2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_d2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_def.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_def.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_def.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_def.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_ext.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_ext.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_ext.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_ext.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_lu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_lu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_lu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_lu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_obj.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_obj.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_obj.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_obj.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_r2x.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_r2x.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_r2x.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_r2x.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_req.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_req.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_req.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_req.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_set.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_set.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_set.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_set.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_trs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_trs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_trs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_trs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_txt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_txt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_txt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_txt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_v3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_v3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_v3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_v3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vfy.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vpm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vpm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vpm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509_vpm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509cset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509cset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509cset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509cset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509name.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509name.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509name.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509name.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509rset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509rset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509rset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509rset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509spki.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509spki.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509spki.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509spki.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509type.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509type.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509type.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x509type.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x_all.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x_all.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x_all.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509/x_all.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/ext_dat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/ext_dat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/ext_dat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/ext_dat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_cache.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_cache.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_cache.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_cache.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_data.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_data.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_data.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_data.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_map.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_map.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_map.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_map.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_node.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_node.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_node.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_node.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_tree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_tree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_tree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/pcy_tree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/tabtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/tabtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/tabtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/tabtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_addr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_addr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_addr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_addr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akeya.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akeya.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akeya.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_akeya.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_alt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_alt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_alt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_alt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_asid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_asid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_asid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_asid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bcons.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bcons.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bcons.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bcons.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bitst.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bitst.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bitst.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_bitst.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_conf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_conf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_conf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_conf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_cpols.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_cpols.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_cpols.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_cpols.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_crld.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_crld.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_crld.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_crld.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_enum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_enum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_enum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_enum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_extku.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_extku.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_extku.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_extku.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_genn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_genn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_genn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_genn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ia5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ia5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ia5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ia5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ncons.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ncons.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ncons.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ncons.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ocsp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ocsp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ocsp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_ocsp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pci.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pci.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pci.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pci.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcia.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcia.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcia.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcia.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcons.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcons.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcons.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pcons.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pku.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pku.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pku.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pku.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pmaps.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pmaps.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pmaps.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_pmaps.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_prn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_prn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_prn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_prn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_purp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_purp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_purp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_purp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_skey.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_skey.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_skey.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_skey.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_sxnet.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_sxnet.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_sxnet.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_sxnet.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_utl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_utl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_utl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3_utl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3conf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3conf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3conf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3conf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3prin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3prin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3prin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/v3prin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/x509v3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/x509v3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/x509v3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x509v3/x509v3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86_64cpuid.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86_64cpuid.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86_64cpuid.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86_64cpuid.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86cpuid.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86cpuid.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86cpuid.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/crypto/x86cpuid.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/README.ASN1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/README.ASN1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/README.ASN1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/README.ASN1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/ocsp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/ocsp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/ocsp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/asn1/ocsp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/b64.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/saccept.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/saccept.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/saccept.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/saccept.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/sconnect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/sconnect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/sconnect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/sconnect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/server.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/server.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/server.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/bio/server.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cacerts.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cacerts.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cacerts.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cacerts.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cert.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cert.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cert.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/cert.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/easy-tls.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/easy_tls/test.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/base64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/base64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/base64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/base64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/conn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/conn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/conn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/conn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/loadrsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/loadrsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/loadrsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/eay/loadrsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/cluster_labs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/cluster_labs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/cluster_labs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/cluster_labs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/hw_ibmca_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/ica_openssl_api.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/ica_openssl_api.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/ica_openssl_api.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/ibmca/ica_openssl_api.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/build.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/build.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/build.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/build.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/rsaref/rsaref_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/engines/zencod/hw_zencod_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/jpakedemo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/jpakedemo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/jpakedemo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/jpake/jpakedemo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/cert.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/cert.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/cert.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/cert.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/example4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/loadkeys.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/privkey.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/privkey.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/privkey.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/maurice/privkey.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkread.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkread.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkread.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkread.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkwrite.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkwrite.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkwrite.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/pkcs12/pkwrite.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/prime.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/prime.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/prime.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/prime/prime.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/privkey.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/privkey.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/privkey.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/privkey.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/selfsign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/selfsign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/selfsign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/selfsign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/cert.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/cert.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/cert.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/cert.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/key.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/key.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/key.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/key.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sig.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sig.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sig.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sig.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/sign/sign.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/spkigen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/spkigen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/spkigen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/spkigen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/cli.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/cli.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/cli.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/cli.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/inetdsrv.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/inetdsrv.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/inetdsrv.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/inetdsrv.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/serv.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/serv.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/serv.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssl/serv.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECC-RSAcertgen.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECC-RSAcertgen.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECC-RSAcertgen.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECC-RSAcertgen.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECCcertgen.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECCcertgen.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECCcertgen.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ECCcertgen.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/RSAcertgen.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/RSAcertgen.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/RSAcertgen.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/RSAcertgen.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ssltest.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ssltest.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ssltest.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/ssltest-ecc/ssltest.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/state_machine.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/state_machine.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/state_machine.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/state_machine/state_machine.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-client.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-client.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-client.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-client.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-server.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-server.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-server.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/A-server.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/CA.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/CA.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/CA.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/CA.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autogunk.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autogunk.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autogunk.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autogunk.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autoungunk.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autoungunk.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autoungunk.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/autoungunk.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/breakage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/breakage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/breakage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/breakage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/buffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/buffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/buffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/buffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/cb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/cb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/cb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/cb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/configure.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/configure.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/configure.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/configure.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/ip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/ip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/ip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/ip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/sm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/sm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/sm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/sm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/tunala/tunala.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkcert.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkcert.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkcert.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkcert.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkreq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkreq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkreq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/demos/x509/mkreq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/certificates.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/certificates.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/certificates.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/certificates.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/keys.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/keys.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/keys.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/keys.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/proxy_certificates.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/proxy_certificates.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/proxy_certificates.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/HOWTO/proxy_certificates.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/CA.pl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/CA.pl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/CA.pl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/CA.pl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/asn1parse.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/asn1parse.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/asn1parse.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/asn1parse.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ca.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ca.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ca.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ca.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ciphers.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ciphers.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ciphers.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ciphers.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/config.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/config.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/config.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/config.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl2pkcs7.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl2pkcs7.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl2pkcs7.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/crl2pkcs7.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dgst.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dgst.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dgst.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dgst.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dhparam.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dhparam.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dhparam.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dhparam.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsa.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsa.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsa.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsa.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsaparam.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsaparam.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsaparam.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/dsaparam.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ec.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ec.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ec.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ec.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ecparam.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ecparam.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ecparam.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ecparam.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/enc.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/enc.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/enc.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/enc.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/errstr.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/errstr.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/errstr.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/errstr.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/gendsa.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/gendsa.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/gendsa.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/gendsa.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/genrsa.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/genrsa.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/genrsa.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/genrsa.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/nseq.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/nseq.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/nseq.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/nseq.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ocsp.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ocsp.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ocsp.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/ocsp.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/openssl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/openssl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/openssl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/openssl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/passwd.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/passwd.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/passwd.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/passwd.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs12.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs12.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs12.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs12.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs7.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs7.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs7.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs7.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs8.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs8.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs8.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/pkcs8.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rand.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rand.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rand.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rand.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/req.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/req.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/req.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/req.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsa.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsa.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsa.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsa.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsautl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsautl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsautl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/rsautl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_client.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_client.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_client.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_client.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_server.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_server.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_server.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_server.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_time.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_time.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_time.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/s_time.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/sess_id.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/sess_id.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/sess_id.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/sess_id.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/smime.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/smime.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/smime.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/smime.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/speed.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/speed.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/speed.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/speed.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/spkac.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/spkac.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/spkac.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/spkac.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/verify.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/verify.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/verify.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/verify.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/version.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/version.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/version.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/version.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509v3_config.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509v3_config.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509v3_config.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/apps/x509v3_config.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/c-indentation.el b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/c-indentation.el similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/c-indentation.el rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/c-indentation.el diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_OBJECT_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_OBJECT_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_OBJECT_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_OBJECT_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_length.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_length.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_length.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_length.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_print_ex.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_print_ex.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_print_ex.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_STRING_print_ex.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_generate_nconf.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_generate_nconf.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_generate_nconf.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ASN1_generate_nconf.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_ctrl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_ctrl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_ctrl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_ctrl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_base64.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_base64.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_base64.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_base64.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_buffer.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_buffer.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_buffer.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_buffer.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_cipher.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_cipher.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_cipher.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_cipher.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_md.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_md.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_md.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_md.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_null.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_null.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_null.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_null.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_ssl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_ssl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_ssl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_f_ssl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_find_type.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_find_type.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_find_type.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_find_type.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_push.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_push.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_push.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_push.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_read.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_read.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_read.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_read.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_accept.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_accept.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_accept.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_accept.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_bio.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_bio.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_bio.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_bio.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_connect.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_connect.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_connect.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_connect.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_fd.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_fd.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_fd.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_fd.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_file.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_file.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_file.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_file.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_mem.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_mem.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_mem.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_mem.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_null.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_null.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_null.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_null.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_socket.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_socket.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_socket.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_s_socket.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_set_callback.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_set_callback.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_set_callback.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_set_callback.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_should_retry.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_should_retry.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_should_retry.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BIO_should_retry.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_BLINDING_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_BLINDING_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_BLINDING_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_BLINDING_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_start.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_start.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_start.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_CTX_start.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add_word.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add_word.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add_word.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_add_word.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_bn2bin.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_bn2bin.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_bn2bin.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_bn2bin.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_cmp.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_cmp.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_cmp.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_cmp.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_copy.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_copy.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_copy.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_copy.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_generate_prime.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_generate_prime.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_generate_prime.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_generate_prime.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_inverse.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_inverse.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_inverse.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_inverse.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_montgomery.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_montgomery.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_montgomery.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_montgomery.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_reciprocal.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_reciprocal.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_reciprocal.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_mod_mul_reciprocal.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_num_bytes.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_num_bytes.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_num_bytes.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_num_bytes.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_rand.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_rand.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_rand.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_rand.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_set_bit.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_set_bit.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_set_bit.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_set_bit.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_swap.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_swap.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_swap.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_swap.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_zero.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_zero.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_zero.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/BN_zero.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_free.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_free.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_free.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_free.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_load_file.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_load_file.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_load_file.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CONF_modules_load_file.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CRYPTO_set_ex_data.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CRYPTO_set_ex_data.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CRYPTO_set_ex_data.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/CRYPTO_set_ex_data.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_key.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_key.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_key.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_key.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_parameters.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_parameters.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_parameters.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_generate_parameters.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_get_ex_new_index.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_get_ex_new_index.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_get_ex_new_index.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_get_ex_new_index.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_set_method.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_set_method.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_set_method.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_set_method.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_size.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_size.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_size.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DH_size.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_SIG_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_SIG_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_SIG_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_SIG_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_do_sign.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_do_sign.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_do_sign.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_do_sign.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_dup_DH.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_dup_DH.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_dup_DH.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_dup_DH.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_key.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_key.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_key.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_key.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_parameters.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_parameters.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_parameters.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_generate_parameters.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_get_ex_new_index.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_get_ex_new_index.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_get_ex_new_index.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_get_ex_new_index.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_set_method.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_set_method.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_set_method.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_set_method.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_sign.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_sign.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_sign.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_sign.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_size.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_size.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_size.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/DSA_size.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_GET_LIB.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_GET_LIB.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_GET_LIB.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_GET_LIB.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_clear_error.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_clear_error.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_clear_error.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_clear_error.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_error_string.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_error_string.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_error_string.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_error_string.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_get_error.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_get_error.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_get_error.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_get_error.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_crypto_strings.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_crypto_strings.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_crypto_strings.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_crypto_strings.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_strings.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_strings.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_strings.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_load_strings.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_print_errors.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_print_errors.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_print_errors.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_print_errors.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_put_error.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_put_error.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_put_error.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_put_error.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_remove_state.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_remove_state.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_remove_state.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_remove_state.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_set_mark.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_set_mark.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_set_mark.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ERR_set_mark.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_BytesToKey.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_BytesToKey.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_BytesToKey.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_BytesToKey.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_DigestInit.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_DigestInit.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_DigestInit.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_DigestInit.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_EncryptInit.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_EncryptInit.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_EncryptInit.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_EncryptInit.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_OpenInit.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_OpenInit.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_OpenInit.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_OpenInit.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_set1_RSA.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_set1_RSA.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_set1_RSA.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_PKEY_set1_RSA.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SealInit.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SealInit.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SealInit.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SealInit.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SignInit.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SignInit.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SignInit.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_SignInit.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_VerifyInit.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_VerifyInit.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_VerifyInit.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/EVP_VerifyInit.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OBJ_nid2obj.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OBJ_nid2obj.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OBJ_nid2obj.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OBJ_nid2obj.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_Applink.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_Applink.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_Applink.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_Applink.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_VERSION_NUMBER.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_VERSION_NUMBER.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_VERSION_NUMBER.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_VERSION_NUMBER.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_config.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_config.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_config.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_config.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_ia32cap.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_ia32cap.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_ia32cap.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_ia32cap.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_load_builtin_modules.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_load_builtin_modules.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_load_builtin_modules.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OPENSSL_load_builtin_modules.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OpenSSL_add_all_algorithms.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OpenSSL_add_all_algorithms.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OpenSSL_add_all_algorithms.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/OpenSSL_add_all_algorithms.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_create.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_create.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_create.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_create.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_parse.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_parse.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_parse.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS12_parse.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_decrypt.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_decrypt.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_decrypt.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_decrypt.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_encrypt.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_encrypt.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_encrypt.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_encrypt.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_sign.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_sign.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_sign.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_sign.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_verify.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_verify.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_verify.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/PKCS7_verify.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_add.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_add.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_add.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_add.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_bytes.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_bytes.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_bytes.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_bytes.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_cleanup.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_cleanup.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_cleanup.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_cleanup.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_egd.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_egd.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_egd.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_egd.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_load_file.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_load_file.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_load_file.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_load_file.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_set_rand_method.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_set_rand_method.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_set_rand_method.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RAND_set_rand_method.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_blinding_on.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_blinding_on.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_blinding_on.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_blinding_on.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_check_key.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_check_key.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_check_key.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_check_key.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_generate_key.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_generate_key.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_generate_key.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_generate_key.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_get_ex_new_index.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_get_ex_new_index.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_get_ex_new_index.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_get_ex_new_index.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_padding_add_PKCS1_type_1.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_padding_add_PKCS1_type_1.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_padding_add_PKCS1_type_1.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_padding_add_PKCS1_type_1.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_print.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_print.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_print.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_print.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_private_encrypt.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_private_encrypt.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_private_encrypt.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_private_encrypt.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_public_encrypt.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_public_encrypt.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_public_encrypt.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_public_encrypt.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_set_method.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_set_method.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_set_method.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_set_method.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_size.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_size.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_size.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/RSA_size.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_read_PKCS7.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_read_PKCS7.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_read_PKCS7.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_read_PKCS7.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_write_PKCS7.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_write_PKCS7.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_write_PKCS7.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/SMIME_write_PKCS7.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_print_ex.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_print_ex.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_print_ex.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_NAME_print_ex.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/X509_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bio.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bio.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bio.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bio.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/blowfish.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/blowfish.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/blowfish.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/blowfish.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn_internal.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn_internal.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn_internal.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/bn_internal.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/buffer.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/buffer.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/buffer.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/buffer.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/crypto.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/crypto.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/crypto.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/crypto.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_ASN1_OBJECT.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_ASN1_OBJECT.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_ASN1_OBJECT.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_ASN1_OBJECT.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DHparams.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DHparams.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DHparams.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DHparams.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DSAPublicKey.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DSAPublicKey.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DSAPublicKey.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_DSAPublicKey.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_PKCS8PrivateKey.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_PKCS8PrivateKey.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_PKCS8PrivateKey.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_PKCS8PrivateKey.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_RSAPublicKey.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_RSAPublicKey.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_RSAPublicKey.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_RSAPublicKey.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_ALGOR.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_ALGOR.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_ALGOR.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_ALGOR.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_CRL.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_CRL.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_CRL.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_CRL.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_NAME.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_NAME.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_NAME.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_NAME.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_REQ.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_REQ.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_REQ.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_REQ.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_SIG.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_SIG.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_SIG.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/d2i_X509_SIG.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des_modes.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des_modes.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des_modes.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/des_modes.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dh.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dh.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dh.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dh.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dsa.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dsa.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dsa.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/dsa.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ecdsa.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ecdsa.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ecdsa.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ecdsa.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/engine.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/engine.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/engine.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/engine.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/err.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/err.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/err.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/err.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/evp.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/evp.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/evp.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/evp.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/hmac.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/hmac.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/hmac.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/hmac.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lh_stats.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lh_stats.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lh_stats.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lh_stats.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lhash.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lhash.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lhash.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/lhash.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/md5.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/md5.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/md5.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/md5.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/mdc2.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/mdc2.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/mdc2.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/mdc2.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/pem.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/pem.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/pem.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/pem.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rand.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rand.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rand.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rand.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rc4.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rc4.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rc4.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rc4.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ripemd.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ripemd.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ripemd.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ripemd.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rsa.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rsa.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rsa.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/rsa.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/sha.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/sha.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/sha.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/sha.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/threads.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/threads.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/threads.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/threads.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui_compat.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui_compat.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui_compat.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/ui_compat.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/x509.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/x509.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/x509.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/crypto/x509.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/fingerprints.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/fingerprints.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/fingerprints.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/fingerprints.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl-shared.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl-shared.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl-shared.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl-shared.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/openssl_button.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CIPHER_get_name.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CIPHER_get_name.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CIPHER_get_name.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CIPHER_get_name.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_COMP_add_compression_method.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_COMP_add_compression_method.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_COMP_add_compression_method.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_COMP_add_compression_method.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_extra_chain_cert.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_extra_chain_cert.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_extra_chain_cert.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_extra_chain_cert.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_session.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_session.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_session.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_add_session.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_ctrl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_ctrl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_ctrl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_ctrl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_flush_sessions.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_flush_sessions.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_flush_sessions.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_flush_sessions.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_free.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_free.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_free.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_free.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_ex_new_index.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_ex_new_index.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_ex_new_index.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_ex_new_index.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_verify_mode.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_verify_mode.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_verify_mode.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_get_verify_mode.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_load_verify_locations.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_load_verify_locations.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_load_verify_locations.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_load_verify_locations.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_number.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_number.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_number.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_number.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sessions.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sessions.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sessions.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_sessions.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_store.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_store.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_store.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_store.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_verify_callback.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_verify_callback.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_verify_callback.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cert_verify_callback.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cipher_list.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cipher_list.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cipher_list.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_cipher_list.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_CA_list.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_CA_list.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_CA_list.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_CA_list.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_default_passwd_cb.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_default_passwd_cb.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_default_passwd_cb.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_default_passwd_cb.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_generate_session_id.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_generate_session_id.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_generate_session_id.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_generate_session_id.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_info_callback.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_info_callback.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_info_callback.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_info_callback.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_max_cert_list.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_max_cert_list.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_max_cert_list.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_max_cert_list.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_mode.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_mode.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_mode.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_mode.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_msg_callback.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_msg_callback.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_msg_callback.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_msg_callback.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_options.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_options.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_options.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_options.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_quiet_shutdown.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_quiet_shutdown.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_quiet_shutdown.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_quiet_shutdown.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_cache_mode.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_cache_mode.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_cache_mode.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_cache_mode.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_id_context.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_id_context.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_id_context.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_session_id_context.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_ssl_version.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_ssl_version.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_ssl_version.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_ssl_version.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_timeout.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_timeout.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_timeout.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_timeout.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_verify.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_verify.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_verify.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_set_verify.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_use_certificate.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_use_certificate.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_use_certificate.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_CTX_use_certificate.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_free.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_free.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_free.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_free.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_ex_new_index.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_ex_new_index.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_ex_new_index.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_ex_new_index.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_time.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_time.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_time.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_SESSION_get_time.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_accept.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_accept.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_accept.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_accept.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_alert_type_string.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_alert_type_string.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_alert_type_string.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_alert_type_string.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_clear.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_clear.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_clear.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_clear.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_connect.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_connect.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_connect.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_connect.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_do_handshake.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_do_handshake.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_do_handshake.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_do_handshake.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_free.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_free.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_free.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_free.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_SSL_CTX.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_SSL_CTX.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_SSL_CTX.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_SSL_CTX.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ciphers.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ciphers.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ciphers.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ciphers.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_client_CA_list.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_client_CA_list.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_client_CA_list.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_client_CA_list.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_current_cipher.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_current_cipher.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_current_cipher.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_current_cipher.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_default_timeout.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_default_timeout.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_default_timeout.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_default_timeout.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_error.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_error.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_error.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_error.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_data_X509_STORE_CTX_idx.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_data_X509_STORE_CTX_idx.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_data_X509_STORE_CTX_idx.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_data_X509_STORE_CTX_idx.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_new_index.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_new_index.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_new_index.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_ex_new_index.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_fd.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_fd.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_fd.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_fd.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_cert_chain.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_cert_chain.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_cert_chain.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_cert_chain.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_certificate.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_certificate.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_certificate.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_peer_certificate.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_rbio.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_rbio.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_rbio.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_rbio.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_session.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_session.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_session.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_session.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_verify_result.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_verify_result.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_verify_result.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_verify_result.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_version.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_version.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_version.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_get_version.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_library_init.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_library_init.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_library_init.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_library_init.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_load_client_CA_file.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_load_client_CA_file.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_load_client_CA_file.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_load_client_CA_file.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_new.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_new.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_new.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_new.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_pending.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_pending.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_pending.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_pending.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_read.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_read.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_read.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_read.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_rstate_string.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_rstate_string.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_rstate_string.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_rstate_string.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_session_reused.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_session_reused.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_session_reused.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_session_reused.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_bio.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_bio.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_bio.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_bio.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_connect_state.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_connect_state.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_connect_state.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_connect_state.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_fd.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_fd.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_fd.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_fd.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_session.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_session.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_session.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_session.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_shutdown.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_shutdown.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_shutdown.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_shutdown.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_verify_result.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_verify_result.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_verify_result.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_set_verify_result.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_shutdown.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_shutdown.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_shutdown.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_shutdown.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_state_string.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_state_string.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_state_string.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_state_string.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_want.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_want.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_want.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_want.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_write.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_write.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_write.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/SSL_write.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/d2i_SSL_SESSION.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/d2i_SSL_SESSION.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/d2i_SSL_SESSION.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/d2i_SSL_SESSION.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/ssl.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/ssl.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/ssl.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssl/ssl.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssleay.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssleay.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssleay.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/ssleay.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/standards.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/standards.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/standards.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/doc/standards.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/e_os2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/axp.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/axp.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/axp.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/axp.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_4758cca_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_aep_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_atalla_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_capi_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_chil_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_cswift_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_gmp_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_nuron_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_sureware_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.ec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.ec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.ec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec.ec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/e_ubsec_err.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/engine_vector.mar b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/engine_vector.mar similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/engine_vector.mar rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/engine_vector.mar diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/makeengines.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/makeengines.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/makeengines.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/makeengines.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vax.opt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vax.opt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vax.opt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vax.opt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/aep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/aep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/aep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/aep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/atalla.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/atalla.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/atalla.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/atalla.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/cswift.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/cswift.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/cswift.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/cswift.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_4758_cca.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_4758_cca.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_4758_cca.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_4758_cca.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_ubsec.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_ubsec.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_ubsec.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hw_ubsec.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hwcryptohook.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hwcryptohook.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hwcryptohook.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/hwcryptohook.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/sureware.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/sureware.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/sureware.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/engines/vendor_defns/sureware.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aes_selftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aes_selftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aes_selftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aes_selftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aesavs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aesavs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aesavs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/aes/fips_aesavs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_des_selftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_des_selftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_des_selftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_des_selftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_desmovs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_desmovs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_desmovs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/des/fips_desmovs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/dh_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/dh_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/dh_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/dh_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_check.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_check.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_check.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_check.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dh/fips_dh_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_key.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_key.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_key.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_key.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_ossl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_ossl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_ossl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_ossl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_selftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_selftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_selftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_selftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsa_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsatest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsatest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsatest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dsatest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dssvs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dssvs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dssvs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/dsa/fips_dssvs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-lib.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-lib.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-lib.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-lib.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-nodiff.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-nodiff.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-nodiff.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips-nodiff.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_canister.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_canister.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_canister.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_canister.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c.sha1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c.sha1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c.sha1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_premain.c.sha1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_test_suite.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_test_suite.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_test_suite.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_test_suite.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_utl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_utl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_utl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fips_utl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsalgtest.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsalgtest.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsalgtest.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsalgtest.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsld b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsld similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsld rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipsld diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/fipstests.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac_selftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac_selftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac_selftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmac_selftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmactest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmactest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmactest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/hmac/fips_hmactest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/install.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/install.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/install.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/install.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/mkfipsscr.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/mkfipsscr.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/mkfipsscr.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/mkfipsscr.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/openssl_fips_fingerprint b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/openssl_fips_fingerprint similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/openssl_fips_fingerprint rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/openssl_fips_fingerprint diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand_selftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand_selftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand_selftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rand_selftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_randtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_randtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_randtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_randtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rngvs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rngvs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rngvs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rand/fips_rngvs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_eay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_eay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_eay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_eay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_gen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_gen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_gen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_gen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_selftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_selftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_selftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_selftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_sign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_sign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_sign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_sign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_x931g.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_x931g.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_x931g.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsa_x931g.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsagtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsagtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsagtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsagtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsastest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsastest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsastest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsastest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsavtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsavtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsavtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/rsa/fips_rsavtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_sha1_selftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_sha1_selftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_sha1_selftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_sha1_selftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_shatest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_shatest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_shatest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_shatest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_standalone_sha1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_standalone_sha1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_standalone_sha1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/fips/sha/fips_standalone_sha1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/install.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/install.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/install.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/install.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/makevms.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/makevms.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/makevms.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/makevms.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/.rnd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/.rnd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/.rnd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/.rnd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/32all.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/32all.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/32all.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/32all.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/applink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/applink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/applink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/applink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/bcb4.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/bcb4.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/bcb4.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/bcb4.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.srl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.srl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.srl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.srl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.ss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.ss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.ss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certCA.ss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certU.ss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certU.ss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certU.ss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/certU.ss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/cmp.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/cmp.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/cmp.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/cmp.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_fips.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_fips.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_fips.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_fips.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_masm.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_masm.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_masm.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_masm.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_ms.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_ms.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_ms.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_ms.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nasm.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nasm.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nasm.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nasm.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nt.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nt.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nt.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_nt.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64a.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64a.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64a.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64a.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64i.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64i.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64i.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/do_win64i.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyCA.ss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyCA.ss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyCA.ss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyCA.ss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyU.ss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyU.ss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyU.ss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/keyU.ss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mingw32.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mingw32.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mingw32.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mingw32.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mw.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mw.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mw.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/mw.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/req2CA.ss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/req2CA.ss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/req2CA.ss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/req2CA.ss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqCA.ss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqCA.ss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqCA.ss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqCA.ss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqU.ss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqU.ss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqU.ss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/reqU.ss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/segrenam.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/segrenam.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/segrenam.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/segrenam.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/speed32.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/speed32.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/speed32.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/speed32.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tenc.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tenc.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tenc.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tenc.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tencce.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tencce.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tencce.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tencce.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/test.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/test.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/test.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/test.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce2.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce2.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce2.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testce2.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testenc.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testenc.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testenc.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testenc.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testencce.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testencce.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testencce.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testencce.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpem.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpem.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpem.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpem.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpemce.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpemce.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpemce.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testpemce.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testss.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testss.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testss.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testss.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testssce.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testssce.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testssce.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/testssce.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tlhelp32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tlhelp32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tlhelp32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tlhelp32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpem.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpem.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpem.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpem.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpemce.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpemce.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpemce.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/tpemce.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/uplink.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/x86asm.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/x86asm.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/x86asm.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ms/x86asm.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.doxy b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.doxy similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.doxy rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.doxy diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.spec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.spec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.spec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/openssl.spec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/OS2-EMX.cmd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/OS2-EMX.cmd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/OS2-EMX.cmd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/OS2-EMX.cmd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/backwardify.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/backwardify.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/backwardify.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/os2/backwardify.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/Makefile.hpux10-cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/Makefile.hpux10-cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/Makefile.hpux10-cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/Makefile.hpux10-cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/hpux10-cc.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/hpux10-cc.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/hpux10-cc.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/hpux10-cc.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/irix.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/irix.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/irix.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/irix.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-gcc.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-gcc.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-gcc.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-gcc.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-installed b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-installed similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-installed rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared-installed diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sco5-shared.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris-sc4.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris-sc4.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris-sc4.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris-sc4.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/solaris.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sun.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sun.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sun.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/sun.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-gcc.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-gcc.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-gcc.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-gcc.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-installed b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-installed similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-installed rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared-installed diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/svr5-shared.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32dll.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32dll.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32dll.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/shlib/win32dll.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/bio_ssl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/bio_ssl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/bio_ssl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/bio_ssl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_both.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_both.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_both.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_both.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_clnt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_clnt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_clnt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_clnt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_meth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_meth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_meth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_meth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_pkt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_pkt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_pkt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_pkt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_srvr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_srvr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_srvr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/d1_srvr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/dtls1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/dtls1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/dtls1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/dtls1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/install.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/install.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/install.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/install.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl_lcl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl_lcl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl_lcl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/kssl_lcl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_clnt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_clnt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_clnt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_clnt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_meth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_meth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_meth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_meth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_pkt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_pkt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_pkt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_pkt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_srvr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_srvr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_srvr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s23_srvr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_clnt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_clnt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_clnt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_clnt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_meth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_meth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_meth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_meth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_pkt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_pkt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_pkt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_pkt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_srvr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_srvr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_srvr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s2_srvr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_both.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_both.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_both.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_both.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_clnt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_clnt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_clnt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_clnt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_meth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_meth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_meth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_meth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_pkt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_pkt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_pkt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_pkt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_srvr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_srvr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_srvr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/s3_srvr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl-lib.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl-lib.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl-lib.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl-lib.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl23.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl23.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl23.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl23.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_algs.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_algs.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_algs.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_algs.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_asn1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_asn1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_asn1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_asn1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_cert.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_cert.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_cert.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_cert.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_ciph.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_ciph.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_ciph.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_ciph.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_err2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_rsa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_rsa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_rsa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_rsa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_sess.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_sess.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_sess.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_sess.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_stat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_stat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_stat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_stat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_task.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_task.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_task.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_task.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_txt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_txt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_txt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssl_txt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssltest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssltest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssltest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/ssltest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_clnt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_clnt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_clnt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_clnt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_enc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_enc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_enc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_enc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_meth.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_meth.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_meth.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_meth.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_srvr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_srvr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_srvr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/t1_srvr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/tls1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/tls1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/tls1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/ssl/tls1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAss.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAss.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAss.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAss.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdh.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdh.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdh.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdh.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdsa.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdsa.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdsa.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssdsa.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssrsa.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssrsa.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssrsa.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/CAssrsa.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P1ss.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P1ss.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P1ss.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P1ss.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P2ss.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P2ss.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P2ss.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/P2ss.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.r b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.r similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.r rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.r diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.x b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.x similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.x rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/SHAmix.x diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssdsa.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssdsa.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssdsa.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssdsa.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssrsa.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssrsa.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssrsa.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Sssrsa.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Uss.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Uss.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Uss.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/Uss.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/VMSca-response.2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/bctest b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/bctest similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/bctest rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/bctest diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-examples.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-examples.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-examples.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-examples.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-test.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-test.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-test.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/cms-test.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/dummytest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/dummytest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/dummytest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/dummytest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/evptests.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/evptests.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/evptests.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/evptests.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/igetest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/igetest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/igetest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/igetest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/maketests.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/maketests.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/maketests.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/maketests.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/methtest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/methtest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/methtest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/methtest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7-1.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7-1.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7-1.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7-1.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/pkcs7.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/r160test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/r160test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/r160test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/r160test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smcont.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smcont.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smcont.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smcont.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa1.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa1.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa1.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa1.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa2.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa2.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa2.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa2.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa3.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa3.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa3.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsa3.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsap.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsap.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsap.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smdsap.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smroot.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smroot.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smroot.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smroot.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa1.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa1.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa1.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa1.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa2.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa2.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa2.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa2.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa3.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa3.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa3.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/smime-certs/smrsa3.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tcrl.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/test.cnf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/test.cnf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/test.cnf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/test.cnf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testca.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testcrl.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testcrl.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testcrl.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testcrl.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testenc.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testfipsssl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testfipsssl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testfipsssl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testfipsssl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testgen.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testp7.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testp7.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testp7.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testp7.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testreq2.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testreq2.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testreq2.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testreq2.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testrsa.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testrsa.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testrsa.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testrsa.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tests.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tests.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tests.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tests.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsid.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsid.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsid.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsid.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testss.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testssl.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsslproxy b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsslproxy similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsslproxy rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testsslproxy diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testx509.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testx509.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testx509.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/testx509.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/times b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/times similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/times rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/times diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tpkcs7d.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/treq.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/trsa.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tsid.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tverify.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tverify.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tverify.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tverify.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/tx509.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert1.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert1.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert1.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert1.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert2.pem b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert2.pem similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert2.pem rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/test/v3-cert2.pem diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/090/586-100.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/090/586-100.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/090/586-100.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/090/586-100.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/486-50.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/486-50.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/486-50.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/486-50.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/586-100.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/586-100.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/586-100.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/586-100.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/68000.bsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/68000.bsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/68000.bsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/68000.bsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/686-200.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/686-200.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/686-200.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/686-200.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha064.osf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha064.osf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha064.osf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha064.osf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.osf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.osf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.osf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/alpha164.osf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/mips-rel.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/mips-rel.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/mips-rel.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/mips-rel.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r10000.irx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r10000.irx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r10000.irx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r10000.irx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r3000.ult b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r3000.ult similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r3000.ult rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r3000.ult diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r4400.irx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r4400.irx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r4400.irx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/091/r4400.irx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/100.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/200.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/200.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/200.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/200.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.dos b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.dos similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.dos rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.dos diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.w31 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.w31 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.w31 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/486-66.w31 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/5.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/5.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/5.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/5.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-085i.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-085i.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-085i.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-085i.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.LN3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.LN3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.LN3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.LN3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.NT2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.NT2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.NT2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.NT2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.dos b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.dos similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.dos rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.dos diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ln4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ln4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ln4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ln4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ntx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ntx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ntx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.ntx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.w31 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.w31 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.w31 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-100.w31 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-1002.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-1002.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-1002.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586-1002.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586p-100.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586p-100.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586p-100.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/586p-100.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.bsd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.bsd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.bsd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.bsd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/686-200.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/L1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/L1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/L1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/L1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R10000.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R10000.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R10000.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R10000.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R4400.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R4400.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R4400.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/R4400.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aix.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aix.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aix.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aix.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aixold.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aixold.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aixold.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/aixold.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha400.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha400.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha400.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/alpha400.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/cyrix100.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/cyrix100.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/cyrix100.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/cyrix100.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux-x86.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux-x86.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux-x86.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux-x86.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/dgux.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-acc.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-acc.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-acc.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-acc.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-kr.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-kr.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-kr.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux-kr.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/hpux.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/p2.w95 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/p2.w95 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/p2.w95 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/p2.w95 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/pent2.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/pent2.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/pent2.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/pent2.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/readme b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/readme similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/readme rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/readme diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.lnx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.lnx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.lnx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.lnx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.nt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.nt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.nt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/s586-100.nt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sgi.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sgi.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sgi.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sgi.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparc2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparcLX.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparcLX.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparcLX.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/sparcLX.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/usparc.t b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/usparc.t similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/usparc.t rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/usparc.t diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/bfs.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/bfs.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/bfs.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/bfs.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/casts.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/casts.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/casts.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/casts.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/des3s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/des3s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/des3s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/des3s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/dess.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/dess.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/dess.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/dess.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md4s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md4s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md4s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md4s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md5s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md5s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md5s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/md5s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/rc4s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/rc4s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/rc4s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/rc4s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/sha1s.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/sha1s.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/sha1s.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/times/x86/sha1s.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c89.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c89.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c89.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c89.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_hash b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_hash similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_hash rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_hash diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_info b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_info similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_info rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_info diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_issuer b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_issuer similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_issuer rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_issuer diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_name b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_name similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_name rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_name diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/tools/c_rehash.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/FreeBSD.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/FreeBSD.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/FreeBSD.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/FreeBSD.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/add_cr.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/add_cr.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/add_cr.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/add_cr.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/arx.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/arx.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/arx.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/arx.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/bat.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/bat.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/bat.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/bat.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ck_errf.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ck_errf.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ck_errf.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ck_errf.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/clean-depend.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/clean-depend.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/clean-depend.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/clean-depend.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/copy.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/copy.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/copy.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/copy.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/cygwin.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/cygwin.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/cygwin.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/cygwin.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/deleof.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/deleof.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/deleof.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/deleof.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/dirname.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/dirname.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/dirname.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/dirname.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/do_ms.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/do_ms.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/do_ms.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/do_ms.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/domd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/domd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/domd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/domd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/err-ins.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/err-ins.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/err-ins.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/err-ins.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-names.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-names.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-names.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-names.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-section.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-section.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-section.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/extract-section.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/files.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/files.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/files.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/files.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fipslink.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fipslink.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fipslink.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fipslink.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fixNT.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fixNT.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fixNT.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/fixNT.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/install.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/install.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/install.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/install.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/libeay.num b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/libeay.num similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/libeay.num rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/libeay.num diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mk1mf.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mk1mf.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mk1mf.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mk1mf.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkcerts.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkcerts.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkcerts.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkcerts.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdef.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdef.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdef.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdef.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdir-p.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdir-p.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdir-p.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkdir-p.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkerr.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkerr.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkerr.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkerr.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkfiles.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkfiles.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkfiles.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkfiles.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mklink.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mklink.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mklink.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mklink.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mksdef.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mksdef.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mksdef.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mksdef.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkstack.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkstack.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkstack.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/mkstack.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/opensslwrap.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/opensslwrap.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/opensslwrap.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/opensslwrap.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/perlpath.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/perlpath.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/perlpath.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/perlpath.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/BC-32.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/BC-32.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/BC-32.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/BC-32.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/Mingw32.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/Mingw32.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/Mingw32.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/Mingw32.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/OS2-EMX.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/OS2-EMX.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/OS2-EMX.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/OS2-EMX.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/VC-32.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/VC-32.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/VC-32.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/VC-32.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/linux.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/linux.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/linux.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/linux.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/netware.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/netware.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/netware.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/netware.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/ultrix.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/ultrix.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/ultrix.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/ultrix.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/unix.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/unix.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/unix.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pl/unix.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2man.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2man.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2man.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2man.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest.pod b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest.pod similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest.pod rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/pod2mantest.pod diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/point.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/point.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/point.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/point.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/selftest.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/selftest.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/selftest.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/selftest.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/shlib_wrap.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/shlib_wrap.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/shlib_wrap.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/shlib_wrap.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/sp-diff.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/sp-diff.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/sp-diff.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/sp-diff.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/speed.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/speed.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/speed.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/speed.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/src-dep.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/src-dep.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/src-dep.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/src-dep.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ssleay.num b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ssleay.num similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ssleay.num rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/ssleay.num diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/tab_num.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/tab_num.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/tab_num.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/tab_num.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/x86asm.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/x86asm.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/x86asm.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/src/util/x86asm.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/ssl/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/CHANGES b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/CHANGES similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/CHANGES rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/CHANGES diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.gcc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.gcc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.gcc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.gcc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/FreeBSD.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.rml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.rml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.rml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.rml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbbmalloc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbbmalloc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbbmalloc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.tbbmalloc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/Makefile.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.gcc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.gcc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.gcc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.gcc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.suncc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.suncc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.suncc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/SunOS.suncc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/codecov.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/codecov.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/codecov.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/codecov.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common_rules.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common_rules.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common_rules.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/common_rules.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/detect.js b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/detect.js similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/detect.js rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/detect.js diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/generate_tbbvars.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.gcc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.gcc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.gcc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.gcc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.icc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.icc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.icc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.icc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/linux.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.gcc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.gcc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.gcc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.gcc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.icc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.icc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.icc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.icc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/macos.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/suncc.map.pause b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/suncc.map.pause similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/suncc.map.pause rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/suncc.map.pause diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/test_launcher.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_linux.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_linux.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_linux.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_linux.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_macos.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_macos.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_macos.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_macos.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_sunos.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_sunos.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_sunos.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_sunos.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_windows.js b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_windows.js similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_windows.js rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/version_info_windows.js diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/makefile.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/makefile.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/makefile.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/makefile.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbb.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbb.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbb.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbb.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc_proxy.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc_proxy.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc_proxy.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/tbbmalloc_proxy.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/version_string.tmp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/version_string.tmp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/version_string.tmp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/vsproject/version_string.tmp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.cl.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.cl.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.cl.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.cl.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.gcc.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.gcc.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.gcc.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.gcc.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.icl.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.icl.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.icl.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.icl.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/windows.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.cl.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.cl.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.cl.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.cl.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/build/xbox360.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/Release_Notes.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/Release_Notes.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/Release_Notes.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/Release_Notes.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00001.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00001.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00001.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00001.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00002.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00002.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00002.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00002.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00003.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00003.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00003.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00003.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00004.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00004.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00004.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00004.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00005.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00005.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00005.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00005.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00006.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00006.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00006.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00006.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00007.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00007.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00007.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00007.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00009.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00009.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00009.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00009.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00011.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00011.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00011.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00011.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00012.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00012.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00012.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00012.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00013.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00013.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00013.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00013.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00015.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00015.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00015.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00015.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00016.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00016.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00016.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00016.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00017.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00017.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00017.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00017.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00018.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00018.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00018.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00018.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00019.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00019.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00019.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00019.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00021.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00021.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00021.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00021.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00026.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00026.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00026.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00026.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00031.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00031.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00031.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00031.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00034.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00034.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00034.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00034.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00035.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00035.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00035.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00035.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00036.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00036.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00036.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00036.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00037.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00037.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00037.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00037.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00038.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00038.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00038.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00038.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00039.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00039.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00039.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00039.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00040.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00040.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00040.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00040.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00041.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00041.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00041.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00041.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00042.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00042.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00042.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00042.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00043.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00043.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00043.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00043.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00044.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00044.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00044.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00044.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00046.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00046.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00046.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00046.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00048.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00048.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00048.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00048.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00049.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00049.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00049.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00049.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00050.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00050.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00050.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00050.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00051.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00051.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00051.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00051.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00053.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00053.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00053.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00053.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00054.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00054.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00054.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00054.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00055.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00055.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00055.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00055.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00056.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00056.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00056.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00056.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00057.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00057.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00057.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00057.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00058.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00058.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00058.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00058.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00059.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00059.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00059.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00059.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00060.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00060.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00060.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00060.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00061.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00061.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00061.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00061.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00062.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00062.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00062.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00062.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00063.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00063.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00063.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00063.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00065.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00065.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00065.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00065.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00067.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00067.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00067.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00067.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00068.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00068.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00068.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00068.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00069.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00069.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00069.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00069.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00070.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00070.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00070.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00070.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00072.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00072.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00072.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00072.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00073.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00073.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00073.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00073.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00075.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00075.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00075.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00075.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00076.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00076.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00076.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00076.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00077.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00077.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00077.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00077.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00084.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00084.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00084.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00084.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00086.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00086.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00086.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00086.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00088.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00088.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00088.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00088.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00090.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00090.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00090.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00090.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00092.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00092.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00092.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00092.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00094.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00094.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00094.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00094.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00095.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00095.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00095.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00095.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00096.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00096.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00096.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00096.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00097.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00097.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00097.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00097.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00098.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00098.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00098.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00098.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00099.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00099.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00099.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00099.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00100.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00100.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00100.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00100.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00101.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00101.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00101.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00101.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00102.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00102.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00102.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00102.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00109.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00109.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00109.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00109.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00113.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00113.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00113.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00113.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00114.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00114.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00114.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00114.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00141.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00141.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00141.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00141.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00142.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00142.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00142.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00142.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00143.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00143.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00143.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00143.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00144.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00144.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00144.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00144.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00145.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00145.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00145.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00145.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00146.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00146.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00146.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00146.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00147.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00147.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00147.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00147.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00148.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00148.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00148.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00148.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00149.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00149.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00149.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00149.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00150.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00150.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00150.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00150.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00151.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00151.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00151.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00151.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00152.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00152.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00152.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00152.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00153.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00154.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00154.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00154.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00154.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00155.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00156.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00156.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00156.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00156.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00157.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00158.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00158.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00158.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00158.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00159.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00160.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00160.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00160.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00160.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00161.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00162.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00162.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00162.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00162.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00163.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00164.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00164.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00164.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00164.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00165.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00166.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00166.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00166.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00166.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00167.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00167.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00167.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00167.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00168.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00168.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00168.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00168.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00169.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00169.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00169.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00169.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00170.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00170.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00170.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00170.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00171.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00172.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00172.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00172.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00172.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00173.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00173.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00173.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00173.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00174.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00174.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00174.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00174.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00175.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00175.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00175.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00175.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00176.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00176.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00176.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00176.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00177.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00177.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00177.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00177.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00178.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00178.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00178.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00178.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00179.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00179.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00179.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00179.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00180.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00180.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00180.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00180.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00181.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00181.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00181.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00181.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00182.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00182.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00182.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00182.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00183.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00183.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00183.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00183.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00184.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00184.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00184.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00184.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00185.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00185.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00185.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00185.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00186.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00186.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00186.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00186.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00187.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00187.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00187.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00187.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00188.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00188.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00188.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00188.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00189.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00189.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00189.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00189.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00190.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00190.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00190.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00190.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00191.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00191.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00191.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00191.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00192.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00192.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00192.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00192.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00193.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00193.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00193.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00193.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00194.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00194.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00194.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00194.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00195.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00195.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00195.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00195.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00196.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00196.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00196.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00196.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00197.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00197.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00197.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00197.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00198.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00198.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00198.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00198.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00199.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00200.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00200.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00200.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00200.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00201.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00201.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00201.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00201.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00202.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00202.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00202.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00202.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00203.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00203.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00203.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00203.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00204.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00204.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00204.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00204.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00205.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00205.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00205.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00205.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00206.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00207.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00207.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00207.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00207.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00208.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00208.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00208.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00208.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00209.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00210.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00210.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00210.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00210.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00211.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00211.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00211.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00211.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00212.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00212.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00212.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00212.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00213.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00213.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00213.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00213.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00214.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00214.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00214.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00214.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00248.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00248.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00248.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00248.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00267.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00267.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00267.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00267.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00273.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00273.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00273.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00273.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00274.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00274.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00274.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00274.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00275.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00275.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00275.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00275.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00276.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00276.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00276.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00276.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00277.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00277.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00277.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00277.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00278.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00278.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00278.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00278.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00279.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00279.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00279.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00279.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00280.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00280.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00280.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00280.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00298.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00298.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00298.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00298.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00308.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00308.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00308.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00308.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00310.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00310.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00310.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00310.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00311.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00311.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00311.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00311.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00319.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00319.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00319.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00319.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00320.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00320.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00320.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00320.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00321.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00321.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00321.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00321.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00322.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00322.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00322.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00322.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00324.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00324.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00324.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00324.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00325.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00325.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00325.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00325.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00335.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00335.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00335.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00335.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00336.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00336.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00336.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00336.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00341.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00341.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00341.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00341.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00350.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00350.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00350.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00350.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00353.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00353.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00353.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00353.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00362.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00362.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00362.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00362.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00364.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00364.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00364.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00364.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00365.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00365.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00365.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00365.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00366.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00366.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00366.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00366.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00375.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00375.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00375.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00375.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00379.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00379.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00379.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00379.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00381.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00381.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00381.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00381.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00387.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00387.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00387.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00387.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00391.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00391.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00391.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00391.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00396.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00396.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00396.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00396.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00400.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00400.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00400.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00400.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00404.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00404.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00404.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00404.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00409.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00409.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00409.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00409.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00420.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00420.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00420.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00420.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00421.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00421.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00421.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00421.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00422.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00422.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00422.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00422.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00423.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00423.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00423.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00423.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00424.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00424.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00424.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00424.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00425.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00425.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00425.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00425.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00426.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00426.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00426.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00426.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00427.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00427.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00427.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00427.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00436.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00436.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00436.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00436.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00443.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00443.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00443.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00443.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00444.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00444.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00444.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00444.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00446.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00446.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00446.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00446.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00447.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00447.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00447.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00447.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00451.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00451.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00451.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00451.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00452.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00452.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00452.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00452.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00453.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00453.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00453.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00453.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00454.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00454.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00454.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00454.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00458.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00458.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00458.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00458.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00459.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00459.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00459.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00459.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00466.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00466.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00466.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00466.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00474.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00474.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00474.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00474.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00476.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00476.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00476.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/a00476.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/annotated.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/annotated.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/annotated.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/annotated.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/concepts.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/concepts.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/concepts.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/concepts.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/deprecated.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/deprecated.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/deprecated.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/deprecated.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/doxygen.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/files.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/files.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/files.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/files.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_enum.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_enum.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_enum.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_enum.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_eval.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_eval.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_eval.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_eval.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_func.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_func.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_func.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_func.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_rela.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_rela.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_rela.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_rela.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_type.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_type.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_type.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_type.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_vars.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_vars.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_vars.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/functions_vars.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals_func.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals_func.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals_func.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/globals_func.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/hierarchy.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/hierarchy.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/hierarchy.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/hierarchy.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/modules.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/modules.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/modules.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/modules.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_enum.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_enum.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_enum.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_enum.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_eval.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_eval.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_eval.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_eval.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_func.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_func.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_func.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_func.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_type.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_type.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_type.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespacemembers_type.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespaces.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespaces.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespaces.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/namespaces.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/pages.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/pages.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/pages.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/pages.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_do_body_req.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_do_body_req.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_do_body_req.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_do_body_req.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_for_body_req.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_for_body_req.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_for_body_req.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_for_body_req.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_body_req.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_body_req.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_body_req.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_body_req.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_lambda_req.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_lambda_req.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_lambda_req.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_reduce_lambda_req.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_scan_body_req.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_scan_body_req.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_scan_body_req.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_scan_body_req.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_sort_iter_req.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_sort_iter_req.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_sort_iter_req.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/parallel_sort_iter_req.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/range_req.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/range_req.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/range_req.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/range_req.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_b.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_b.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_b.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_b.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_l.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_l.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_l.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_l.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_r.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_r.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_r.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tab_r.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tabs.css b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tabs.css similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tabs.css rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/doc/html/tabs.css diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_extended.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/msvs/sub_string_finder_pretty.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_extended.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_extended.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_extended.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_extended.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_pretty.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_pretty.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_pretty.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/sub_string_finder_pretty.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/xcode/sub_string_finder.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/xcode/sub_string_finder.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/xcode/sub_string_finder.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/GettingStarted/sub_string_finder/xcode/sub_string_finder.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/copy_libraries.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/copy_libraries.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/copy_libraries.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/copy_libraries.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.gmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.gmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.gmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.gmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.win b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.win similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.win rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/Makefile.win diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/convideo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/convideo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/convideo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/convideo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/ddvideo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/ddvideo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/ddvideo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/ddvideo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/dxcheck.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/dxcheck.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/dxcheck.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/dxcheck.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/gdivideo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/gdivideo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/gdivideo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/gdivideo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/macvideo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/macvideo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/macvideo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/macvideo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/video.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/video.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/video.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/video.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/winvideo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/winvideo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/winvideo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/winvideo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/xvideo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/xvideo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/xvideo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/gui/xvideo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/common/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/count_strings.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/count_strings.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/count_strings.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/count_strings.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/msvs/count_strings_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/xcode/count_strings.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/xcode/count_strings.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/xcode/count_strings.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/count_strings/xcode/count_strings.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/concurrent_hash_map/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Graph.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Matrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Matrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Matrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/Matrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/msvs/parallel_preorder_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/parallel_preorder.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/parallel_preorder.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/parallel_preorder.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/parallel_preorder.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/xcode/parallel_preorder.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/xcode/parallel_preorder.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/xcode/parallel_preorder.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_do/parallel_preorder/xcode/parallel_preorder.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/Game_of_life.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/app.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/msvs/resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/AssemblyInfo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/AssemblyInfo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/AssemblyInfo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/AssemblyInfo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Board.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Board.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Board.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Board.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Evolution.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Form1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Form1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Form1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Form1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Game_of_life.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Game_of_life.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Game_of_life.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Game_of_life.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Update_state.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Update_state.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Update_state.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/game_of_life.NET/src/Update_state.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/pover_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/msvs/resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polymain.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/polyover.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_global.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_global.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_global.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_global.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/pover_video.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/rpolygon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/rpolygon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/rpolygon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/rpolygon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/speedup.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/speedup.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/speedup.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/speedup.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/classes.nib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/classes.nib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/classes.nib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/classes.nib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/info.nib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/info.nib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/info.nib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/info.nib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/objects.xib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/objects.xib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/objects.xib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/English.lproj/main.nib/objects.xib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/Info.plist b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/Info.plist similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/Info.plist rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/Info.plist diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.pch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.pch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.pch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.pch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/polygon_overlay/xcode/PolygonOverlay.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/SeismicSimulation.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/SeismicSimulation.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/SeismicSimulation.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/SeismicSimulation.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/SeismicSimulation_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/small.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/small.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/small.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/msvs/small.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/classes.nib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/classes.nib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/classes.nib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/classes.nib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/info.nib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/info.nib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/info.nib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/info.nib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/objects.xib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/objects.xib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/objects.xib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/English.lproj/main.nib/objects.xib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/Info.plist b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/Info.plist similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/Info.plist rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/Info.plist diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.pch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.pch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.pch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.pch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/seismic/xcode/SeismicSimulation.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/820spheres.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/820spheres.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/820spheres.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/820spheres.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls3.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls3.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls3.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/balls3.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/lattice.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/lattice.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/lattice.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/lattice.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/model2.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/model2.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/model2.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/model2.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/teapot.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/teapot.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/teapot.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/teapot.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/trypsin4pti.dat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/trypsin4pti.dat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/trypsin4pti.dat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/dat/trypsin4pti.dat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/gui.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/small.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/small.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/small.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/small.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.serial.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.tbb1d.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/msvs/tachyon_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/api.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apigeom.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apigeom.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apigeom.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apigeom.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/apitrigeom.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/bndbox.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/box.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/camera.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/coordsys.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/cylinder.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/extvol.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/getargs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/global.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/grid.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imageio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/imap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/intersect.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/jpeg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/light.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/machine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/machine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/machine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/machine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/macros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/macros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/macros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/macros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/objbound.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/parse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/plane.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ppm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/pthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/quadric.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/render.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ring.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/shade.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/sphere.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/texture.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/tgafile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.serial.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.serial.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.serial.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.serial.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb1d.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb1d.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb1d.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace.tbb1d.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace_rest.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace_rest.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace_rest.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/trace_rest.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/triangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/ui.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/video.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/src/vol.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/classes.nib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/classes.nib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/classes.nib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/classes.nib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/info.nib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/info.nib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/info.nib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/info.nib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/objects.xib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/objects.xib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/objects.xib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/English.lproj/main.nib/objects.xib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/Info.plist b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/Info.plist similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/Info.plist rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/Info.plist diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.pch b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.pch similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.pch rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.pch diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_for/tachyon/xcode/tachyon.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_bench.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_bench.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_bench.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_bench.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_sample.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_sample.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_sample.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/convex_hull_sample.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_benchmark.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/msvs/convex_hull_sample.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/xcode/convex_hull.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/xcode/convex_hull.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/xcode/convex_hull.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/convex_hull/xcode/convex_hull.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/msvs/primes_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/primes.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/primes.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/primes.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/primes.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/xcode/primes.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/xcode/primes.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/xcode/primes.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/parallel_reduce/primes/xcode/primes.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/gen_input.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/gen_input.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/gen_input.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/gen_input.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/gen_input.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj.user b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj.user similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj.user rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square.vcproj.user diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/msvs/square_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/square.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/square.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/square.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/square.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/xcode/square.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/xcode/square.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/xcode/square.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/pipeline/square/xcode/square.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/OptimizedParallelSumTree.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/OptimizedParallelSumTree.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/OptimizedParallelSumTree.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/OptimizedParallelSumTree.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SerialSumTree.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SerialSumTree.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SerialSumTree.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SerialSumTree.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SimpleParallelSumTree.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SimpleParallelSumTree.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SimpleParallelSumTree.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/SimpleParallelSumTree.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/msvs/tree_sum_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/xcode/tree_sum.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/xcode/tree_sum.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/xcode/tree_sum.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task/tree_sum/xcode/tree_sum.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/input4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/msvs/sudoku_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/sudoku.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/sudoku.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/sudoku.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/task_group/sudoku/sudoku.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Fibonacci.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Fibonacci.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Fibonacci.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Fibonacci.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile.windows b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile.windows similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile.windows rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/Makefile.windows diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.icproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.icproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.icproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.icproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_cl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_cl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_cl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_cl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_icl.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_icl.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_icl.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/msvs/fibonacci_icl.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/xcode/fibonacci.xcodeproj/project.pbxproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/xcode/fibonacci.xcodeproj/project.pbxproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/xcode/fibonacci.xcodeproj/project.pbxproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/fibonacci/xcode/fibonacci.xcodeproj/project.pbxproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/examples/test_all/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_queue_internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_queue_internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_queue_internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_queue_internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_unordered_internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_unordered_internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_unordered_internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_concurrent_unordered_internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_tbb_windef.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_tbb_windef.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_tbb_windef.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/_tbb_windef.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/aligned_space.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/aligned_space.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/aligned_space.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/aligned_space.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range2d.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range2d.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range2d.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range2d.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range3d.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range3d.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range3d.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/blocked_range3d.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/cache_aligned_allocator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/cache_aligned_allocator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/cache_aligned_allocator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/cache_aligned_allocator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/combinable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/combinable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/combinable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/combinable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/condition_variable b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/condition_variable similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/condition_variable rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/condition_variable diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/ppl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/ppl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/ppl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/ppl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/thread b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/thread similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/thread rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/compat/thread diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_hash_map.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_hash_map.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_hash_map.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_hash_map.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_queue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_queue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_queue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_queue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_unordered_map.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_unordered_map.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_unordered_map.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_unordered_map.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_vector.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_vector.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_vector.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/concurrent_vector.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/critical_section.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/critical_section.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/critical_section.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/critical_section.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/enumerable_thread_specific.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/enumerable_thread_specific.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/enumerable_thread_specific.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/enumerable_thread_specific.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/ibm_aix51.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/ibm_aix51.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/ibm_aix51.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/ibm_aix51.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia64.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia64.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia64.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_ia64.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_intel64.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_intel64.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_intel64.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/linux_intel64.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/mac_ppc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/mac_ppc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/mac_ppc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/mac_ppc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/sunos_sparc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/sunos_sparc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/sunos_sparc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/sunos_sparc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_ia32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_ia32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_ia32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_ia32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_intel64.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_intel64.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_intel64.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/windows_intel64.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/xbox360_ppc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/xbox360_ppc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/xbox360_ppc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/machine/xbox360_ppc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_rw_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_rw_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_rw_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/null_rw_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_do.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_do.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_do.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_do.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for_each.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for_each.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for_each.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_for_each.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_invoke.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_invoke.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_invoke.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_invoke.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_reduce.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_reduce.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_reduce.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_reduce.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_scan.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_scan.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_scan.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_scan.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_sort.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_sort.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_sort.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_sort.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_while.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_while.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_while.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/parallel_while.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/partitioner.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/partitioner.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/partitioner.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/partitioner.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/pipeline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/pipeline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/pipeline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/pipeline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_rw_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_rw_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_rw_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/queuing_rw_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/reader_writer_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/reader_writer_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/reader_writer_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/reader_writer_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/recursive_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/recursive_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/recursive_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/recursive_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/scalable_allocator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/scalable_allocator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/scalable_allocator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/scalable_allocator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_rw_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_rw_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_rw_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/spin_rw_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_group.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_group.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_group.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_group.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_init.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_init.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_init.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_init.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_observer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_observer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_observer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/task_scheduler_observer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_allocator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_allocator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_allocator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_allocator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_exception.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_exception.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_exception.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_exception.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_machine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_machine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_machine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_machine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_profiling.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_profiling.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_profiling.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_profiling.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_stddef.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_stddef.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_stddef.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_stddef.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_thread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_thread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_thread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbb_thread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbbmalloc_proxy.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbbmalloc_proxy.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbbmalloc_proxy.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tbbmalloc_proxy.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tick_count.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tick_count.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tick_count.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/include/tbb/tick_count.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_queue_v2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/concurrent_vector_v2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/spin_rw_mutex_v2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/task_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/task_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/task_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/task_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_queue_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_queue_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_queue_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_queue_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_vector_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_vector_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_vector_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_concurrent_vector_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_mutex_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_mutex_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_mutex_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_mutex_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_task_v2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_task_v2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_task_v2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/old/test_task_v2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_cutoff.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_cutoff.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_cutoff.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_cutoff.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_impl_tbb.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_impl_tbb.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_impl_tbb.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/fibonacci_impl_tbb.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/perf_util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/perf_util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/perf_util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/perf_util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics_xml.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics_xml.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics_xml.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/statistics_xml.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_base.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_base.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_base.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_base.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_framework.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_framework.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_framework.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_framework.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map_fill.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map_fill.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map_fill.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_hash_map_fill.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_locked_work.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_locked_work.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_locked_work.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_locked_work.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_sandbox.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_sandbox.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_sandbox.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_sandbox.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_unit.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_unit.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_unit.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_unit.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_vector.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_vector.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_vector.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/perf/time_vector.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/library_assert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/library_assert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/library_assert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/library_assert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/omp_dynamic_link.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_factory.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_factory.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_factory.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_factory.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_omp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_omp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_omp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_omp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_tbb.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_tbb.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_tbb.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/client/rml_tbb.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_base.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_base.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_base.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_base.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_omp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_omp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_omp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_omp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_tbb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_tbb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_tbb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/include/rml_tbb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_nested.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_nested.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_nested.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_nested.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_simple.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_simple.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_simple.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/omp_simple.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_multi_omp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_multi_omp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_multi_omp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_multi_omp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_simple.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_simple.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_simple.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/tbb_simple.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/thread_level.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/thread_level.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/thread_level.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/perfor/thread_level.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/irml.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/irml.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/irml.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/irml.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/job_automaton.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/job_automaton.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/job_automaton.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/job_automaton.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/lin-rml-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/lin-rml-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/lin-rml-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/lin-rml-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/rml_server.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/rml_server.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/rml_server.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/rml_server.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/thread_monitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/thread_monitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/thread_monitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/thread_monitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/wait_counter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/wait_counter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/wait_counter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/wait_counter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win32-rml-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win32-rml-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win32-rml-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win32-rml-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win64-rml-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win64-rml-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win64-rml-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/server/win64-rml-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/rml_omp_stub.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/rml_omp_stub.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/rml_omp_stub.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/rml_omp_stub.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_job_automaton.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_job_automaton.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_job_automaton.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_job_automaton.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_mixed.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_mixed.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_mixed.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_mixed.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp_c_linkage.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp_c_linkage.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp_c_linkage.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_omp_c_linkage.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_tbb.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_tbb.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_tbb.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_rml_tbb.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_server.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_server.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_server.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_server.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_thread_monitor.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_thread_monitor.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_thread_monitor.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/rml/test/test_thread_monitor.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/arena.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/cache_aligned_allocator.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/cache_aligned_allocator.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/cache_aligned_allocator.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/cache_aligned_allocator.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_hash_map.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_hash_map.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_hash_map.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_hash_map.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_monitor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_queue.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_queue.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_queue.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_queue.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_vector.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_vector.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_vector.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/concurrent_vector.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/condition_variable.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/condition_variable.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/condition_variable.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/condition_variable.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/critical_section.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/critical_section.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/critical_section.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/critical_section.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/custom_scheduler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/custom_scheduler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/custom_scheduler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/custom_scheduler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/dynamic_link.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/governor.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/atomic_support.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/atomic_support.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/atomic_support.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/atomic_support.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/lock_byte.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/lock_byte.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/lock_byte.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia32-masm/lock_byte.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/atomic_support.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/atomic_support.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/atomic_support.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/atomic_support.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/ia64_misc.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/ia64_misc.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/ia64_misc.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/ia64_misc.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/lock_byte.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/lock_byte.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/lock_byte.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/lock_byte.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/log2.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/log2.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/log2.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/log2.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/pause.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/pause.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/pause.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ia64-gas/pause.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ibm_aix51/atomic_support.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ibm_aix51/atomic_support.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ibm_aix51/atomic_support.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/ibm_aix51/atomic_support.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/index.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/index.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/index.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/index.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intel64-masm/atomic_support.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intel64-masm/atomic_support.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intel64-masm/atomic_support.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intel64-masm/atomic_support.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intrusive_list.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intrusive_list.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intrusive_list.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/intrusive_list.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/itt_notify.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin32-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin32-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin32-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin32-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64ipf-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64ipf-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64ipf-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/lin64ipf-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac32-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac32-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac32-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac32-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac64-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac64-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac64-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mac64-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mailbox.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mailbox.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mailbox.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mailbox.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/market.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/observer_proxy.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/pipeline.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/pipeline.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/pipeline.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/pipeline.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/private_server.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/private_server.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/private_server.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/private_server.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_rw_mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_rw_mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_rw_mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/queuing_rw_mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/reader_writer_lock.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/reader_writer_lock.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/reader_writer_lock.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/reader_writer_lock.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/recursive_mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/recursive_mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/recursive_mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/recursive_mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_utility.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_utility.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_utility.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/scheduler_utility.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_rw_mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_rw_mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_rw_mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/spin_rw_mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_group_context.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_group_context.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_group_context.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_group_context.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_stream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_stream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_stream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/task_stream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_assert_impl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_assert_impl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_assert_impl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_assert_impl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_main.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_misc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_resource.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_resource.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_resource.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_resource.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_thread.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_thread.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_thread.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_thread.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_version.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_version.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_version.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tbb_version.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tls.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tls.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tls.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tls.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/disable_warnings.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/disable_warnings.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/disable_warnings.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/disable_warnings.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/internal/ittnotify.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/internal/ittnotify.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/internal/ittnotify.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/internal/ittnotify.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_static.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/ittnotify_types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/legacy/ittnotify.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/legacy/ittnotify.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/legacy/ittnotify.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/legacy/ittnotify.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/prototype/ittnotify.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/prototype/ittnotify.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/prototype/ittnotify.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/tools_api/prototype/ittnotify.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win32-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win32-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win32-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win32-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win64-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win64-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win64-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/win64-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/xbox360-tbb-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/xbox360-tbb-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/xbox360-tbb-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbb/xbox360-tbb-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Customize.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Customize.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Customize.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Customize.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/LifoList.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/LifoList.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/LifoList.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/LifoList.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MapMemory.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MapMemory.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MapMemory.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MapMemory.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MemoryAllocator.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MemoryAllocator.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MemoryAllocator.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/MemoryAllocator.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Statistics.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Statistics.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Statistics.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/Statistics.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/TypeDefinitions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/TypeDefinitions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/TypeDefinitions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/TypeDefinitions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin-tbbmalloc-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin-tbbmalloc-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin-tbbmalloc-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin-tbbmalloc-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin32-proxy-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin32-proxy-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin32-proxy-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin32-proxy-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64-proxy-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64-proxy-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64-proxy-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64-proxy-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64ipf-proxy-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64ipf-proxy-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64ipf-proxy-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/lin64ipf-proxy-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac32-tbbmalloc-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac32-tbbmalloc-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac32-tbbmalloc-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac32-tbbmalloc-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac64-tbbmalloc-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac64-tbbmalloc-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac64-tbbmalloc-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/mac64-tbbmalloc-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/proxy.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbb_function_replacement.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/tbbmalloc.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win-gcc-tbbmalloc-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win-gcc-tbbmalloc-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win-gcc-tbbmalloc-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win-gcc-tbbmalloc-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win32-tbbmalloc-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win32-tbbmalloc-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win32-tbbmalloc-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win32-tbbmalloc-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win64-tbbmalloc-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win64-tbbmalloc-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win64-tbbmalloc-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/win64-tbbmalloc-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/xbox360-tbbmalloc-export.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/xbox360-tbbmalloc-export.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/xbox360-tbbmalloc-export.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/tbbmalloc/xbox360-tbbmalloc-export.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_allocator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_allocator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_allocator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_allocator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_assert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_assert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_assert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_assert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_bad_expr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_bad_expr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_bad_expr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_bad_expr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_barrier.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_barrier.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_barrier.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_barrier.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_concurrency_tracker.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_concurrency_tracker.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_concurrency_tracker.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_concurrency_tracker.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_cpu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_cpu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_cpu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_cpu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_eh.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_eh.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_eh.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_eh.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_inject_scheduler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_inject_scheduler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_inject_scheduler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_inject_scheduler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_iterator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_iterator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_iterator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_iterator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_m128.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_m128.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_m128.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_m128.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_memory.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_memory.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_memory.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_memory.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_report.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_report.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_report.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/harness_report.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator_STL.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator_STL.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator_STL.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ScalableAllocator_STL.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_aligned_space.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_aligned_space.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_aligned_space.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_aligned_space.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator_STL.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator_STL.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator_STL.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_allocator_STL.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_assembly.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_assembly.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_assembly.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_assembly.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_atomic.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_atomic.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_atomic.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_atomic.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range2d.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range2d.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range2d.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range2d.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range3d.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range3d.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range3d.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_blocked_range3d.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator_STL.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator_STL.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator_STL.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_cache_aligned_allocator_STL.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_combinable.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_combinable.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_combinable.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_combinable.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_compiler.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_compiler.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_compiler.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_compiler.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_hash_map.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_hash_map.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_hash_map.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_hash_map.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_monitor.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_monitor.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_monitor.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_monitor.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_queue.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_queue.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_queue.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_queue.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_unordered.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_unordered.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_unordered.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_unordered.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_vector.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_vector.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_vector.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_concurrent_vector.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_condition_variable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_condition_variable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_condition_variable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_condition_variable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_critical_section.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_critical_section.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_critical_section.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_critical_section.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_algorithms.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_algorithms.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_algorithms.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_algorithms.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_tasks.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_tasks.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_tasks.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_eh_tasks.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_enumerable_thread_specific.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_enumerable_thread_specific.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_enumerable_thread_specific.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_enumerable_thread_specific.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_halt.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_halt.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_halt.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_halt.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_handle_perror.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_handle_perror.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_handle_perror.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_handle_perror.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_inits_loop.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_inits_loop.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_inits_loop.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_inits_loop.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_intrusive_list.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_intrusive_list.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_intrusive_list.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_intrusive_list.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ittnotify.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ittnotify.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ittnotify.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_ittnotify.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_lambda.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_lambda.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_lambda.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_lambda.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_compliance.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_compliance.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_compliance.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_compliance.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_lib_unload.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_lib_unload.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_lib_unload.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_lib_unload.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_overload.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_overload.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_overload.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_overload.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_pure_c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_pure_c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_pure_c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_pure_c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_regression.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_regression.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_regression.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_regression.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_whitebox.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_whitebox.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_whitebox.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_malloc_whitebox.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_model_plugin.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_model_plugin.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_model_plugin.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_model_plugin.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex_native_threads.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex_native_threads.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex_native_threads.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_mutex_native_threads.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_openmp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_openmp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_openmp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_openmp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_do.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_do.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_do.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_do.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for_each.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for_each.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for_each.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_for_each.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_invoke.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_invoke.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_invoke.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_invoke.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_pipeline.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_pipeline.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_pipeline.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_pipeline.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_reduce.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_reduce.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_reduce.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_reduce.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_scan.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_scan.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_scan.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_scan.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_sort.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_sort.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_sort.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_sort.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_while.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_while.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_while.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_parallel_while.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline_with_tbf.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline_with_tbf.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline_with_tbf.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_pipeline_with_tbf.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_reader_writer_lock.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_reader_writer_lock.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_reader_writer_lock.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_reader_writer_lock.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_rwm_upgrade_downgrade.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_rwm_upgrade_downgrade.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_rwm_upgrade_downgrade.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_rwm_upgrade_downgrade.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_std_thread.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_std_thread.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_std_thread.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_std_thread.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_assertions.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_assertions.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_assertions.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_assertions.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_auto_init.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_auto_init.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_auto_init.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_auto_init.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_group.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_group.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_group.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_group.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_leaks.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_leaks.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_leaks.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_leaks.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_init.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_init.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_init.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_init.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_observer.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_observer.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_observer.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_task_scheduler_observer.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_condition_variable.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_condition_variable.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_condition_variable.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_condition_variable.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_header.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_header.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_header.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_header.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_thread.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_thread.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_thread.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_thread.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_version.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_version.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_version.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tbb_version.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_thread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_thread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_thread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_thread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tick_count.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tick_count.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tick_count.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_tick_count.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_yield.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_yield.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_yield.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/src/src/test/test_yield.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/tbblib/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile.config b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile.config similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile.config rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/Makefile.config diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/diff-030521 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/diff-030521 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/diff-030521 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/diff-030521 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_clock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_clock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_clock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_clock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_intr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_intr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_intr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_intr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_malloc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_malloc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_malloc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_malloc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mutex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mutex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mutex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_mutex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_rwlock.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_rwlock.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_rwlock.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_rwlock.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_shutdown.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_shutdown.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_shutdown.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_shutdown.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_sx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_sx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_sx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_sx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_synch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_synch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_synch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_synch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_tc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_tc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_tc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_tc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_timeout.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_timeout.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_timeout.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/kern_timeout.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_bufring.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_bufring.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_bufring.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_bufring.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_prf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_prf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_prf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/subr_prf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uipc_syscalls.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uipc_syscalls.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uipc_syscalls.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uipc_syscalls.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uma_core.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uma_core.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uma_core.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.kern/uma_core.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/arc4random.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/arc4random.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/arc4random.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/arc4random.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/divdi3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/divdi3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/divdi3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/divdi3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/harvest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/harvest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/harvest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/harvest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_ether.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_ether.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_ether.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_ether.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_gif.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_gif.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_gif.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_gif.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_llatbl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_llatbl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_llatbl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_llatbl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_loop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_loop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_loop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/if_loop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/igmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/igmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/igmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/igmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_i386.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_i386.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_i386.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_i386.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_x86_64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_x86_64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_x86_64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_cksum_x86_64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_gif.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_gif.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_gif.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_gif.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_mcast.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_mcast.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_mcast.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_mcast.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_pcb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_pcb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_pcb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_pcb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_proto.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_proto.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_proto.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_proto.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_rmx.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_rmx.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_rmx.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/in_rmx.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/inet_ntoa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/inet_ntoa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/inet_ntoa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/inet_ntoa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_ecn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_ecn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_ecn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_ecn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_encap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_encap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_encap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_encap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_fastfwd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_fastfwd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_fastfwd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_fastfwd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_icmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_icmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_icmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_icmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_id.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_id.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_id.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_id.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_input.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_input.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_input.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_input.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_options.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_options.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_options.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_options.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_output.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_output.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_output.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/ip_output.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/kern_subr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/kern_subr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/kern_subr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/kern_subr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/md5c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/md5c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/md5c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/md5c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/netisr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/netisr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/netisr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/netisr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/qdivrem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/qdivrem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/qdivrem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/qdivrem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/radix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/radix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/radix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/radix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/random.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/random.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/random.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/random.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/raw_ip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/raw_ip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/raw_ip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/raw_ip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/route.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/route.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/route.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/route.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strcpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlcpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlcpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlcpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlcpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strlen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strncmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strncmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strncmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/strncmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/subr_sbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/subr_sbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/subr_sbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/subr_sbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/support.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/support.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/support.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/support.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_hostcache.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_hostcache.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_hostcache.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_hostcache.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_input.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_input.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_input.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_input.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_lro.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_lro.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_lro.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_lro.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_offload.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_offload.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_offload.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_offload.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_output.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_output.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_output.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_output.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_reass.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_reass.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_reass.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_reass.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_sack.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_sack.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_sack.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_sack.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_subr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_subr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_subr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_subr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_syncache.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_syncache.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_syncache.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_syncache.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timewait.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timewait.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timewait.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_timewait.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_usrreq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_usrreq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_usrreq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/tcp_usrreq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udivdi3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udivdi3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udivdi3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udivdi3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udp_usrreq.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udp_usrreq.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udp_usrreq.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/udp_usrreq.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_domain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_domain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_domain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_domain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_mbuf2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_sockbuf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_sockbuf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_sockbuf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_sockbuf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_socket.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_socket.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_socket.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/freebsd.netinet/uipc_socket.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/host_serv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/if_host.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/shmbuf_ring.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/shmbuf_ring.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/shmbuf_ring.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/shmbuf_ring.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_daemon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/host.support/uptcp_statis.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/altq/bsd_if_altq.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/altq/bsd_if_altq.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/altq/bsd_if_altq.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/altq/bsd_if_altq.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit_kevents.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit_kevents.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit_kevents.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/bsm/bsd_audit_kevents.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd__iovec.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd__iovec.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd__iovec.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd__iovec.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_pcpu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_pcpu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_pcpu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_pcpu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_proc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_proc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_proc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_proc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_signalvar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_signalvar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_signalvar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_signalvar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_sysproto.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_sysproto.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_sysproto.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/discard/bsd_sysproto.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__bus.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__bus.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__bus.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__bus.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__limits.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__limits.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__limits.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__limits.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd__types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_asmacros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_asmacros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_asmacros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_asmacros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus_dma.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus_dma.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus_dma.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_bus_dma.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpufunc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpufunc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpufunc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cpufunc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cputypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cputypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cputypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_cputypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_endian.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_endian.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_endian.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_endian.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_frame.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_frame.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_frame.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_frame.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_in_cksum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_in_cksum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_in_cksum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_in_cksum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_intr_machdep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_intr_machdep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_intr_machdep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_intr_machdep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_param.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_param.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_param.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_param.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_pmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_pmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_pmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_pmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_proc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_proc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_proc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_proc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_psl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_psl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_psl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_psl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_runq.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_runq.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_runq.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_runq.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_segments.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_segments.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_segments.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_segments.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_signal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_signal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_signal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_signal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_specialreg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_specialreg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_specialreg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_specialreg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_stdarg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_stdarg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_stdarg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_stdarg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_trap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_trap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_trap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_trap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_tss.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_tss.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_tss.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_tss.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_ucontext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_ucontext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_ucontext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/i386/bsd_ucontext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/libkern/bsd_quad.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/libkern/bsd_quad.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/libkern/bsd_quad.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/libkern/bsd_quad.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_bpf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_bpf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_bpf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_bpf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_ethernet.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_ethernet.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_ethernet.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_ethernet.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_flowtable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_flowtable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_flowtable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_flowtable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_arp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_bridgevar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_bridgevar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_bridgevar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_bridgevar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_clone.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_clone.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_clone.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_clone.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_dl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_dl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_dl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_dl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_gif.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_gif.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_gif.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_gif.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llatbl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llatbl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llatbl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llatbl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_llc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_media.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_media.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_media.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_media.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_if_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_iso88025.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_iso88025.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_iso88025.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_iso88025.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_netisr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_netisr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_netisr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_netisr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_radix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_radix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_radix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_radix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_raw_cb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_raw_cb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_raw_cb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_raw_cb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_route.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_route.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_route.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_route.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_vnet.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_vnet.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_vnet.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/net/bsd_vnet.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_core.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_core.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_core.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_core.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp6.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp6.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp6.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp6.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_icmp_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_if_ether.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_if_ether.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_if_ether.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_if_ether.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_igmp_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_gif.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_gif.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_gif.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_gif.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_pcb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_pcb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_pcb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_pcb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_systm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_systm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_systm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_systm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_in_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip6.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip6.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip6.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip6.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_ecn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_ecn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_ecn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_ecn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_encap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_encap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_encap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_encap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_fw.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_fw.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_fw.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_fw.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_icmp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_icmp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_icmp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_icmp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_mroute.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_mroute.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_mroute.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_mroute.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_options.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_options.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_options.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_options.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_ip_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_fsm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_fsm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_fsm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_fsm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_hostcache.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_hostcache.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_hostcache.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_hostcache.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_lro.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_lro.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_lro.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_lro.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_offload.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_offload.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_offload.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_offload.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_seq.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_seq.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_seq.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_seq.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_syncache.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_syncache.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_syncache.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_syncache.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_timer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_timer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_timer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_timer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcp_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcpip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcpip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcpip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_tcpip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_toedev.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_toedev.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_toedev.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_toedev.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet/bsd_udp_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_pcb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_pcb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_pcb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_pcb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_in6_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6protosw.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6protosw.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6protosw.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_ip6protosw.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_nd6.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_nd6.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_nd6.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_nd6.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_tcp6_var.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_tcp6_var.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_tcp6_var.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/netinet6/bsd_tcp6_var.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_assym.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_assym.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_assym.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_assym.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_bus_if.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_bus_if.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_bus_if.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_bus_if.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_core.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_core.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_core.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_core.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_device_if.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_device_if.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_device_if.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_device_if.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_atalk.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_atalk.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_atalk.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_atalk.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_bootp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_bootp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_bootp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_bootp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_carp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_carp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_carp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_carp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_compat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_compat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_compat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_compat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ddb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ddb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ddb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ddb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_device_polling.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_device_polling.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_device_polling.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_device_polling.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet6.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet6.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet6.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet6.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipfw.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipfw.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipfw.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipfw.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipsec.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipsec.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipsec.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipsec.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipstealth.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipstealth.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipstealth.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipstealth.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_profiling.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_profiling.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_profiling.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_profiling.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_stress_test.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_stress_test.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_stress_test.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_stress_test.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mpath.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mpath.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mpath.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mpath.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mrouting.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mrouting.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mrouting.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_mrouting.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_npx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_npx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_npx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_npx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ntp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ntp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ntp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_ntp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_param.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_param.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_param.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_param.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_pf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_pf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_pf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_pf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_printf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_printf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_printf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_printf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_route.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_route.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_route.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_route.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_sctp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_sctp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_sctp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_sctp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_tcpdebug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_tcpdebug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_tcpdebug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_tcpdebug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_zero.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_zero.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_zero.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/opt/bsd_opt_zero.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/security/mac/bsd_mac_framework.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/security/mac/bsd_mac_framework.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/security/mac/bsd_mac_framework.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/security/mac/bsd_mac_framework.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__bus_dma.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__bus_dma.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__bus_dma.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__bus_dma.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__null.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__null.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__null.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__null.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__pthreadtypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__pthreadtypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__pthreadtypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__pthreadtypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rmlock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rmlock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rmlock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rmlock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rwlock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rwlock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rwlock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__rwlock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__semaphore.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__semaphore.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__semaphore.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__semaphore.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sigset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sigset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sigset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sigset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__sx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__task.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__task.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__task.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__task.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__timeval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__timeval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__timeval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__timeval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd__types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_aio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_aio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_aio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_aio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bitstring.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bitstring.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bitstring.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bitstring.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_buf_ring.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_buf_ring.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_buf_ring.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_buf_ring.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus_dma.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus_dma.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus_dma.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_bus_dma.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_callout.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_callout.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_callout.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_callout.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cdefs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cdefs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cdefs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cdefs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_condvar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_condvar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_condvar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_condvar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_conf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_conf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_conf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_conf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cpuset.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cpuset.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cpuset.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_cpuset.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ctype.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ctype.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ctype.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ctype.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_domain.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_domain.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_domain.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_domain.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_endian.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_endian.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_endian.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_endian.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_errno.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_errno.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_errno.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_errno.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_event.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_event.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_event.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_event.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_eventhandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_eventhandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_eventhandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_eventhandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fcntl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fcntl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fcntl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fcntl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_file.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_file.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_file.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_file.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fnv_hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fnv_hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fnv_hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_fnv_hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_interrupt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_interrupt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_interrupt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_interrupt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ioccom.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ioccom.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ioccom.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ioccom.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kernel.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kernel.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kernel.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kernel.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kobj.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kobj.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kobj.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kobj.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kthread.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kthread.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kthread.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_kthread.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ktr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ktr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ktr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ktr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_libkern.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_libkern.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_libkern.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_libkern.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_limits.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_limits.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_limits.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_limits.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_linker_set.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_linker_set.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_linker_set.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_linker_set.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock_profile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock_profile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock_profile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lock_profile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lockstat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lockstat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lockstat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_lockstat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mac.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mac.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mac.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mac.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_malloc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_malloc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_malloc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_malloc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mbuf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mbuf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mbuf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mbuf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_md5.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_md5.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_md5.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_md5.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_osd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_osd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_osd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_osd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_param.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_param.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_param.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_param.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_poll.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_poll.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_poll.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_poll.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_priority.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_priority.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_priority.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_priority.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_protosw.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_protosw.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_protosw.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_protosw.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_queue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_queue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_queue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_queue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_random.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_random.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_random.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_random.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_refcount.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_refcount.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_refcount.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_refcount.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resourcevar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resourcevar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resourcevar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_resourcevar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rman.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rman.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rman.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rman.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rmlock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rmlock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rmlock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rmlock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rtprio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rtprio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rtprio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rtprio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_runq.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_runq.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_runq.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_runq.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rwlock.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rwlock.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rwlock.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_rwlock.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sbuf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sbuf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sbuf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sbuf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sched.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sched.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sched.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sched.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_select.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_select.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_select.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_select.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_selinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_selinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_selinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_selinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sigio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sigio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sigio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sigio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_signal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_signal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_signal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_signal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_smp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_smp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_smp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_smp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockbuf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockbuf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockbuf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockbuf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socket.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socket.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socket.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socket.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socketvar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socketvar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socketvar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_socketvar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockopt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockopt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockopt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockopt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockstate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockstate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockstate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sockstate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stddef.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stddef.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stddef.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stddef.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_sx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslimits.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslimits.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslimits.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslimits.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_syslog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_systm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_systm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_systm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_systm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_taskqueue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_taskqueue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_taskqueue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_taskqueue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_time.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_time.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_time.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_time.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timepps.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timepps.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timepps.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timepps.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timespec.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timespec.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timespec.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timespec.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timetc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timetc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timetc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timetc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_timex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_tree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_tree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_tree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_tree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucontext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucontext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucontext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucontext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucred.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucred.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucred.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_ucred.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_uio.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_uio.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_uio.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_uio.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_vmmeter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_vmmeter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_vmmeter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/sys/bsd_vmmeter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/vm/bsd_uma_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__bus.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__bus.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__bus.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__bus.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__limits.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__limits.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__limits.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__limits.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd__types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_asmacros.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_asmacros.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_asmacros.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_asmacros.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_atomic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_atomic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_atomic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_atomic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus_dma.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus_dma.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus_dma.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_bus_dma.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpu.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpu.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpu.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpu.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpufunc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpufunc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpufunc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cpufunc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cputypes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cputypes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cputypes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_cputypes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_endian.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_endian.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_endian.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_endian.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_frame.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_frame.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_frame.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_frame.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_in_cksum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_in_cksum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_in_cksum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_in_cksum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_intr_machdep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_intr_machdep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_intr_machdep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_intr_machdep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_mutex.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_mutex.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_mutex.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_mutex.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_param.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_param.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_param.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_param.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_pmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_pmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_pmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_pmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_proc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_proc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_proc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_proc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_psl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_psl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_psl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_psl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_runq.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_runq.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_runq.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_runq.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_segments.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_segments.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_segments.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_segments.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_signal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_signal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_signal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_signal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_specialreg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_specialreg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_specialreg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_specialreg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_stdarg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_stdarg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_stdarg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_stdarg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_trap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_trap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_trap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_trap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_tss.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_tss.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_tss.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_tss.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_ucontext.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_ucontext.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_ucontext.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/include/x86_64/bsd_ucontext.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_api.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_socket.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_socket.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_socket.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/lib/uptcp_socket.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/client.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/client.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/client.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/client.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/server.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/server.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/server.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/samples/test/server.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-headers.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-headers.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-headers.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-headers.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-types.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-types.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-types.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/analyze-freebsd-linux-types.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.y b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.y similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.y rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/c-gramar.y diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/lex.yy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/lex.yy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/lex.yy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/lex.yy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/y.tab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/y.tab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/y.tab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/ansi-c/y.tab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/c-gramar.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/c-gramar.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/c-gramar.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/c-gramar.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/lex.yy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/lex.yy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/lex.yy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/lex.yy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/y.tab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/y.tab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/y.tab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/c-parser/y.tab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include-dirs.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include-dirs.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include-dirs.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include-dirs.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/copy-include.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_funcdefs.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_funcdefs.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_funcdefs.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_funcdefs.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_types.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_types.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_types.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/extract_types.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-fake-filelist.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-fake-filelist.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-fake-filelist.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-fake-filelist.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-filelist.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-filelist.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-filelist.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-filelist.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-funclist.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-funclist.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-funclist.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/gen-wrap-funclist.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/ld.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/ld.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/ld.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/ld.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/remove_h_file.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/remove_h_file.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/remove_h_file.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/remove_h_file.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/replace_h_file.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/replace_h_file.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/replace_h_file.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/replace_h_file.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/save_h_file.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/save_h_file.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/save_h_file.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/save_h_file.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/script.log b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/script.log similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/script.log rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/src/scripts/script.log diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/uptcpip/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/FAQ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/FAQ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/FAQ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/FAQ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/INDEX b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/INDEX similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/INDEX rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/INDEX diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/adler32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/adler32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/adler32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/adler32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/algorithm.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/algorithm.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/algorithm.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/algorithm.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.pup b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.pup similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.pup rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.pup diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.sas b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.sas similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.sas rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/amiga/Makefile.sas diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/bndsrc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/bndsrc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/bndsrc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/bndsrc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/compile.clp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/compile.clp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/compile.clp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/compile.clp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/zlib.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/zlib.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/zlib.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/as400/zlib.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/compress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/compress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/compress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/compress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/configure.shared b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/configure.shared similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/configure.shared rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/configure.shared diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/README.contrib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/README.contrib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/README.contrib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/README.contrib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/buffer_demo.adb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/buffer_demo.adb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/buffer_demo.adb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/buffer_demo.adb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/mtest.adb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/mtest.adb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/mtest.adb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/mtest.adb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/read.adb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/read.adb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/read.adb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/read.adb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/test.adb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/test.adb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/test.adb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/test.adb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.adb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.adb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.adb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.adb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.ads b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.ads similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.ads rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-streams.ads diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.adb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.adb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.adb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.adb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.ads b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.ads similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.ads rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib-thin.ads diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.adb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.adb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.adb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.adb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.ads b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.ads similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.ads rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.ads diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.gpr b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.gpr similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.gpr rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/ada/zlib.gpr diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/README.586 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/README.586 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/README.586 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/README.586 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/match.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/match.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/match.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm586/match.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/README.686 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/README.686 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/README.686 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/README.686 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/match.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/match.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/match.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/asm686/match.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/blast.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.pk b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.pk similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.pk rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.pk diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/blast/test.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLib.pas b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLib.pas similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLib.pas rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLib.pas diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLibConst.pas b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLibConst.pas similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLibConst.pas rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/ZLibConst.pas diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/zlibd32.mak b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/zlibd32.mak similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/zlibd32.mak rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/delphi/zlibd32.mak diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.build b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.build similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.build rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.build diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.chm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.chm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.chm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.chm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/AssemblyInfo.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/AssemblyInfo.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/AssemblyInfo.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/AssemblyInfo.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/ChecksumImpl.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/ChecksumImpl.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/ChecksumImpl.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/ChecksumImpl.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CircularBuffer.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CircularBuffer.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CircularBuffer.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CircularBuffer.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CodecBase.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CodecBase.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CodecBase.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/CodecBase.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Deflater.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Deflater.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Deflater.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Deflater.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.csproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.csproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.csproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/DotZLib.csproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/GZipStream.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/GZipStream.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/GZipStream.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/GZipStream.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Inflater.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Inflater.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Inflater.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/Inflater.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/UnitTests.cs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/UnitTests.cs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/UnitTests.cs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/DotZLib/UnitTests.cs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/LICENSE_1_0.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/LICENSE_1_0.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/LICENSE_1_0.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/LICENSE_1_0.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/dotzlib/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/infback9.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inffix9.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inffix9.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inffix9.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inffix9.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inflate9.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inflate9.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inflate9.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inflate9.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/infback9/inftree9.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffas86.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffas86.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffas86.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffas86.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffast.S b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffast.S similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffast.S rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/inflate86/inffast.S diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/test.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/test.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/test.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/test.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream/zfstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream_test.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream_test.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream_test.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream2/zstream_test.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/test.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/test.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/test.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/test.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.cc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.cc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.cc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.cc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/iostream3/zfstream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masm686/match.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masm686/match.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masm686/match.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masm686/match.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/bld_ml64.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/bld_ml64.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/bld_ml64.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/bld_ml64.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/gvmat64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/gvmat64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/gvmat64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/gvmat64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffas8664.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffas8664.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffas8664.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffas8664.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffasx64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffasx64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffasx64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/inffasx64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx64/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/bld_ml32.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/bld_ml32.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/bld_ml32.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/bld_ml32.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/gvmat32c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/inffas32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/inffas32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/inffas32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/inffas32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/mkasm.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/mkasm.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/mkasm.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/mkasm.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/masmx86/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ChangeLogUnzip b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ChangeLogUnzip similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ChangeLogUnzip rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ChangeLogUnzip diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/crypt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/crypt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/crypt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/crypt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/ioapi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/iowin32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/miniunz.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/miniunz.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/miniunz.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/miniunz.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/minizip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/minizip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/minizip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/minizip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/mztools.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/unzip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/minizip/zip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/example.pas b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/example.pas similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/example.pas rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/example.pas diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibd32.mak b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibd32.mak similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibd32.mak rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibd32.mak diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibpas.pas b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibpas.pas similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibpas.pas rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/pascal/zlibpas.pas diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/puff.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/zeros.raw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/zeros.raw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/zeros.raw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/puff/zeros.raw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/testzlib/testzlib.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/Makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/untgz.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/untgz.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/untgz.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/untgz/untgz.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/miniunz.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/miniunz.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/miniunz.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/miniunz.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/minizip.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/minizip.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/minizip.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/minizip.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/testzlib.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/testzlib.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/testzlib.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/testzlib.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlib.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlib.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlib.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlib.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibstat.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibstat.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibstat.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibstat.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc7/zlibvc.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/miniunz.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/miniunz.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/miniunz.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/miniunz.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/minizip.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/minizip.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/minizip.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/minizip.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlib.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlib.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlib.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlib.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlibdll.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlibdll.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlibdll.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/testzlibdll.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlib.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlib.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlib.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlib.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibstat.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibstat.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibstat.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibstat.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/contrib/vstudio/vc8/zlibvc.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/crc32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/deflate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/example.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/example.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/example.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/example.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/README.examples b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/README.examples similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/README.examples rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/README.examples diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/fitblk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/fitblk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/fitblk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/fitblk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gun.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gun.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gun.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gun.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzappend.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzappend.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzappend.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzappend.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzjoin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzjoin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzjoin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzjoin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/gzlog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zlib_how.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zlib_how.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zlib_how.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zlib_how.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zpipe.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zpipe.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zpipe.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zpipe.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zran.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zran.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zran.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/examples/zran.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/gzio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/gzio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/gzio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/gzio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/infback.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/infback.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/infback.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/infback.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffast.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffixed.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffixed.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffixed.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inffixed.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inflate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/inftrees.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/make_vms.com b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/make_vms.com similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/make_vms.com rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/make_vms.com diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/minigzip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/minigzip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/minigzip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/minigzip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.bor b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.bor similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.bor rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.bor diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.dj2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.dj2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.dj2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.dj2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.emx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.emx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.emx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.emx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.tc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.tc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.tc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/msdos/Makefile.tc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/Makefile.riscos b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/Makefile.riscos similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/Makefile.riscos rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/Makefile.riscos diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/descrip.mms b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/descrip.mms similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/descrip.mms rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/descrip.mms diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/Makefile.os2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/Makefile.os2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/Makefile.os2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/Makefile.os2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/zlib.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/zlib.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/zlib.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/os2/zlib.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/visual-basic.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/visual-basic.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/visual-basic.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/visual-basic.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/zlib.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/zlib.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/zlib.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/old/zlib.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/README.projects b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/README.projects similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/README.projects rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/README.projects diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/README.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/README.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/README.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/README.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/example.dsp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/example.dsp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/example.dsp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/example.dsp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/minigzip.dsp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/minigzip.dsp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/minigzip.dsp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/minigzip.dsp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsw b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsw similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsw rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/projects/visualc6/zlib.dsw diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/qnx/package.qpg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/qnx/package.qpg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/qnx/package.qpg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/qnx/package.qpg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/trees.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/uncompr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/uncompr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/uncompr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/uncompr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/DLL_FAQ.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/DLL_FAQ.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/DLL_FAQ.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/DLL_FAQ.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.bor b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.bor similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.bor rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.bor diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.emx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.emx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.emx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.emx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.gcc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.gcc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.gcc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.gcc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.msc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.msc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.msc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/Makefile.msc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/VisualC.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/VisualC.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/VisualC.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/VisualC.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib1.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib1.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib1.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/win32/zlib1.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.in.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.in.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.in.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zconf.in.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.3 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.3 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.3 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.3 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/src/zutil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/libs/zlib/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/dedup_client.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/dedup_client.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/dedup_client.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/client/dedup_client.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/binheap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/debug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/debug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/debug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/debug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/decoder.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedupdef.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedupdef.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedupdef.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/dedupdef.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/encoder.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable_private.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable_private.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable_private.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/hashtable_private.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/mbuffer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/md32_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/md32_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/md32_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/md32_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha_locl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha_locl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha_locl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/openssl/sha_locl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/queue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/rabin.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/sha.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/tree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/src/server/util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netdedup/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/client.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/client.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/client.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/client.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/tpool.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/tpool.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/tpool.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/client/tpool.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/LICENSE b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/LICENSE similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/LICENSE rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/LICENSE diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/ferret-pthreads.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/ferret-pthreads.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/ferret-pthreads.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/ferret-pthreads.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/mkdb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/mkdb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/mkdb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/mkdb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/benchmark/runbench2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/datatype.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/datatype.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/datatype.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/datatype.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/extend.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/extend.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/extend.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/extend.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/feature.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/feature.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/feature.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/feature.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/ferret.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/ferret.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/ferret.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/ferret.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/index.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/index.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/index.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/index.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/install.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/install.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/install.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/install.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/intro.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/intro.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/intro.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/intro.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/layout.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/layout.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/layout.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/layout.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/library.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/library.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/library.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/library.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/server.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/server.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/server.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/server.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/util.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/util.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/util.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/util.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecdist.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecdist.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecdist.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecdist.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecsetdist.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecsetdist.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecsetdist.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/manual/vecsetdist.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.pdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.pdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.pdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.pdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.pdf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.pdf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.pdf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.pdf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.ppt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.ppt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.ppt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/cass_arch.ppt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/depend.mk b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/depend.mk similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/depend.mk rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/depend.mk diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/distfunc.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/distfunc.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/distfunc.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/distfunc.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/index.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/index.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/index.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/index.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/management.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/management.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/management.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/management.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/overview.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/overview.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/overview.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/overview.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/queryplan.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/queryplan.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/queryplan.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/queryplan.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/storage.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/storage.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/storage.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/storage.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep.awk b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep.awk similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep.awk rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/texdep.awk diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/vecset.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/vecset.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/vecset.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/doc/spec/vecset.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/cass_img_extract.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/cass_img_extract.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/cass_img_extract.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/cass_img_extract.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/edge.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/edge.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/edge.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/edge.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/extract.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/extract.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/extract.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/extract.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/image.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/srm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/srm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/srm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/image/srm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/arena.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/arena.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/arena.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/arena.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_array.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_array.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_array.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_array.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bench.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bench.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bench.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bench.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bitmap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bitmap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bitmap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_bitmap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_dist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_dist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_dist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_dist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_endian.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_endian.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_endian.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_endian.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_file.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_file.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_file.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_file.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_heap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_heap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_heap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_heap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_matrix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_matrix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_matrix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_matrix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_reg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_reg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_reg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_reg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_stat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_stat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_stat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_stat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_timer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_timer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_timer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_timer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_topk.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_topk.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_topk.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_topk.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_type.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_type.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_type.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/cass_type.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/dat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/dat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/dat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/dat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/datalog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/datalog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/datalog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/datalog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/hash_table.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/hash_table.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/hash_table.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/hash_table.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/heap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/heap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/heap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/heap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_pickpert.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_pickpert.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_pickpert.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_pickpert.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_table.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_table.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_table.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/lsh_table.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/queue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/queue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/queue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/queue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/tpool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/tpool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/tpool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/include/tpool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/arena.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/arena.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/arena.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/arena.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/assign.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/assign.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/assign.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/assign.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bench.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bench.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bench.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bench.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bitmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bitmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bitmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/bitmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_reg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_reg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_reg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cass_reg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/chunk_cnt.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/chunk_cnt.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/chunk_cnt.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/chunk_cnt.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/cuckoo_hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dataset.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dataset.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dataset.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dataset.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/emd.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/env.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/env.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/env.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/env.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash_table.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash_table.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash_table.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/hash_table.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/heap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/heap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/heap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/heap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/import.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/import.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/import.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/import.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query_batch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query_batch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query_batch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/LSH_query_batch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/local.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/perturb.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/recall.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/recall.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/recall.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/lsh/recall.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/map.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/map.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/map.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/map.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/matrix.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/matrix.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/matrix.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/matrix.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/queue.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/queue.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/queue.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/queue.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/raw.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/raw.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/raw.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/raw.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/stat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/stat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/stat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/stat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/table.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/table.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/table.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/table.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/timer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/timer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/timer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/timer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/topk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/topk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/topk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/topk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tpool.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tpool.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tpool.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/tpool.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/src/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_cfg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_cfg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_cfg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_cfg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_index.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_index.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_index.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_index.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_map.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_map.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_map.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_map.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_table.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_table.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_table.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_table.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vec_dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vec_dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vec_dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vec_dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vecset_dist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vecset_dist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vecset_dist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_add_vecset_dist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_describe.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_describe.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_describe.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_describe.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_export.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_export.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_export.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_export.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_import.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_import.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_import.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_import.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_init.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_init.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_init.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/src/server/tools/cass_init.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netferret/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/native.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/native.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/native.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/native.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simdev.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simdev.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simdev.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simdev.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simlarge.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simlarge.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simlarge.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simlarge.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simmedium.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simmedium.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simmedium.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simmedium.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simsmall.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simsmall.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simsmall.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/simsmall.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/test.runconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/test.runconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/test.runconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/parsec/test.runconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/client.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/client.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/client.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/client/client.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/run.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/run.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/run.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/run.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/Makefile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/Makefile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/Makefile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/Makefile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.hpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.hpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.hpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/parsec_barrier.hpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/streamcluster.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/streamcluster.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/streamcluster.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/src/server/streamcluster.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/netapps/netstreamcluster/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPack.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPack.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPack.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPack.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPackOptions.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPackOptions.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPackOptions.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeCPackOptions.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeGraphVizOptions.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeGraphVizOptions.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeGraphVizOptions.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeGraphVizOptions.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLogo.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLogo.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLogo.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CMakeLogo.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.ctest.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.ctest.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.ctest.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CTestCustom.ctest.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.manual b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.manual similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.manual rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.manual diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/ChangeLog.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CompileFlags.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CompileFlags.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CompileFlags.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/CompileFlags.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Copyright.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Copyright.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Copyright.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Copyright.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartLocal.conf.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartLocal.conf.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartLocal.conf.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/DartLocal.conf.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-indent.vim b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-indent.vim similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-indent.vim rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-indent.vim diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-mode.el b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-mode.el similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-mode.el rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-mode.el diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-syntax.vim b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-syntax.vim similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-syntax.vim rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Docs/cmake-syntax.vim diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo_b.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo_b.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo_b.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Demo/demo_b.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Example/Hello/hello.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/AddFileDependencies.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/AddFileDependencies.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/AddFileDependencies.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/AddFileDependencies.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASM-ATTInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASM-ATTInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASM-ATTInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASM-ATTInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMCompiler.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMCompiler.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMCompiler.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMCompiler.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeASMInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeAddNewLanguage.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeAddNewLanguage.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeAddNewLanguage.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeAddNewLanguage.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityC.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityC.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityC.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityC.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityCXX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityCXX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityCXX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBackwardCompatibilityCXX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBorlandFindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBorlandFindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBorlandFindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBorlandFindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBuildSettings.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBuildSettings.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBuildSettings.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeBuildSettings.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompiler.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompiler.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompiler.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompiler.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerABI.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerABI.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerABI.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerABI.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerId.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerId.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerId.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCCompilerId.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompiler.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompiler.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompiler.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompiler.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerABI.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerABI.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerABI.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerABI.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerId.cpp.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerId.cpp.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerId.cpp.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXCompilerId.cpp.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCXXInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCommonLanguageInclude.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCommonLanguageInclude.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCommonLanguageInclude.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCommonLanguageInclude.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCompilerABI.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCompilerABI.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCompilerABI.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeCompilerABI.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeConfigurableFile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeConfigurableFile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeConfigurableFile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeConfigurableFile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDependentOption.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDependentOption.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDependentOption.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDependentOption.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASM-ATTCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASM-ATTCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASM-ATTCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASM-ATTCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASMCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASMCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASMCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineASMCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCXXCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCXXCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCXXCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCXXCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerABI.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerABI.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerABI.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerABI.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerId.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerId.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerId.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineCompilerId.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineFortranCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineFortranCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineFortranCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineFortranCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineJavaCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineJavaCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineJavaCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineJavaCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineRCCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineRCCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineRCCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineRCCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineSystem.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineSystem.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineSystem.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeDetermineSystem.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeExportBuildSettings.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeExportBuildSettings.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeExportBuildSettings.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeExportBuildSettings.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindBinUtils.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindBinUtils.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindBinUtils.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindBinUtils.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindFrameworks.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindFrameworks.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindFrameworks.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindFrameworks.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindWMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindWMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindWMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindWMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindXCode.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindXCode.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindXCode.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFindXCode.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeForceCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeForceCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeForceCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeForceCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompiler.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompiler.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompiler.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompiler.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompilerId.F90.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompilerId.F90.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompilerId.F90.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranCompilerId.F90.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeFortranInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeGenericSystem.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeGenericSystem.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeGenericSystem.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeGenericSystem.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeImportBuildSettings.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeImportBuildSettings.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeImportBuildSettings.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeImportBuildSettings.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaCompiler.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaCompiler.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaCompiler.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaCompiler.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeJavaInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMSYSFindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMSYSFindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMSYSFindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMSYSFindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMinGWFindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMinGWFindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMinGWFindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeMinGWFindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeNMakeFindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeNMakeFindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeNMakeFindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeNMakeFindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePlatformId.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePlatformId.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePlatformId.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePlatformId.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePrintSystemInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePrintSystemInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePrintSystemInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakePrintSystemInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCCompiler.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCCompiler.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCCompiler.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCCompiler.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeRCInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystem.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystem.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystem.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystem.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystemSpecificInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystemSpecificInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystemSpecificInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeSystemSpecificInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASM-ATTCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASM-ATTCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASM-ATTCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASM-ATTCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASMCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASMCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASMCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestASMCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCXXCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCXXCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCXXCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestCXXCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestForFreeVC.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestForFreeVC.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestForFreeVC.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestForFreeVC.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestFortranCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestFortranCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestFortranCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestFortranCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestGNU.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestGNU.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestGNU.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestGNU.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestJavaCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestJavaCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestJavaCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestJavaCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestNMakeCLVersion.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestNMakeCLVersion.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestNMakeCLVersion.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestNMakeCLVersion.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestRCCompiler.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestRCCompiler.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestRCCompiler.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeTestRCCompiler.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeUnixFindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeUnixFindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeUnixFindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeUnixFindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6BackwardCompatibility.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6BackwardCompatibility.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6BackwardCompatibility.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6BackwardCompatibility.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6FindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6FindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6FindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS6FindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS71FindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS71FindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS71FindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS71FindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7BackwardCompatibility.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7BackwardCompatibility.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7BackwardCompatibility.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7BackwardCompatibility.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7FindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7FindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7FindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS7FindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS8FindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS8FindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS8FindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS8FindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS9FindMake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS9FindMake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS9FindMake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CMakeVS9FindMake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/COPYING-CMAKE-SCRIPTS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/COPYING-CMAKE-SCRIPTS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/COPYING-CMAKE-SCRIPTS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/COPYING-CMAKE-SCRIPTS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.DS_Store.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.DS_Store.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.DS_Store.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.DS_Store.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Description.plist.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Description.plist.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Description.plist.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Description.plist.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Info.plist.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Info.plist.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Info.plist.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.Info.plist.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXScriptLauncher.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXScriptLauncher.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXScriptLauncher.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXScriptLauncher.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXX11.Info.plist.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXX11.Info.plist.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXX11.Info.plist.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.OSXX11.Info.plist.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.RuntimeScript.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.RuntimeScript.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.RuntimeScript.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.RuntimeScript.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.STGZ_Header.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.STGZ_Header.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.STGZ_Header.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.STGZ_Header.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.VolumeIcon.icns.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.VolumeIcon.icns.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.VolumeIcon.icns.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.VolumeIcon.icns.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.background.png.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.background.png.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.background.png.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.background.png.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.distribution.dist.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.distribution.dist.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.distribution.dist.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPack.distribution.dist.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackDeb.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackDeb.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackDeb.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackDeb.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackRPM.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackRPM.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackRPM.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackRPM.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackZIP.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackZIP.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackZIP.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CPackZIP.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTest.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTest.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTest.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTest.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTestTargets.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTestTargets.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTestTargets.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CTestTargets.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCCompilerFlag.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCCompilerFlag.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCCompilerFlag.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCCompilerFlag.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceCompiles.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceCompiles.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceCompiles.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceCompiles.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceRuns.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceRuns.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceRuns.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCSourceRuns.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXCompilerFlag.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXCompilerFlag.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXCompilerFlag.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXCompilerFlag.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceCompiles.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceCompiles.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceCompiles.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceCompiles.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceRuns.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceRuns.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceRuns.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckCXXSourceRuns.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckForPthreads.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckForPthreads.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckForPthreads.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckForPthreads.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFortranFunctionExists.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFortranFunctionExists.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFortranFunctionExists.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFortranFunctionExists.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckFunctionExists.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFile.cxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFileCXX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFileCXX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFileCXX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFileCXX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFiles.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFiles.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFiles.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckIncludeFiles.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.lists.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.lists.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.lists.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckLibraryExists.lists.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSizeOf.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSizeOf.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSizeOf.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSizeOf.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckStructHasMember.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckStructHasMember.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckStructHasMember.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckStructHasMember.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSymbolExists.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSymbolExists.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSymbolExists.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckSymbolExists.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSize.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSize.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSize.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSize.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSizeC.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSizeC.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSizeC.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckTypeSizeC.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/CheckVariableExists.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Dart.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Dart.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Dart.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Dart.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DartConfiguration.tcl.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DartConfiguration.tcl.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DartConfiguration.tcl.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DartConfiguration.tcl.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Documentation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Documentation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Documentation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Documentation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DummyCXXFile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DummyCXXFile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DummyCXXFile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/DummyCXXFile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FLTKCompatibility.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FLTKCompatibility.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FLTKCompatibility.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FLTKCompatibility.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FeatureSummary.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FeatureSummary.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FeatureSummary.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FeatureSummary.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindASPELL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindASPELL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindASPELL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindASPELL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindAVIFile.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindAVIFile.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindAVIFile.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindAVIFile.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBLAS.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBLAS.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBLAS.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBLAS.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBZip2.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBZip2.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBZip2.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBZip2.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBoost.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBoost.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBoost.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindBoost.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCABLE.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCABLE.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCABLE.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCABLE.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCURL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCURL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCURL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCURL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCVS.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCVS.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCVS.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCVS.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCups.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCups.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCups.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCups.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCurses.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCurses.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCurses.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCurses.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCygwin.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCygwin.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCygwin.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindCygwin.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDCMTK.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDCMTK.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDCMTK.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDCMTK.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDart.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDart.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDart.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDart.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDoxygen.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDoxygen.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDoxygen.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindDoxygen.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindEXPAT.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindEXPAT.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindEXPAT.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindEXPAT.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK2.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK2.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK2.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFLTK2.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFreetype.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFreetype.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFreetype.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindFreetype.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGCCXML.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGCCXML.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGCCXML.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGCCXML.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGDAL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGDAL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGDAL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGDAL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGIF.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGIF.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGIF.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGIF.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLU.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLU.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLU.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLU.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLUT.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLUT.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLUT.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGLUT.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGTK.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGTK.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGTK.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGTK.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGettext.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGettext.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGettext.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGettext.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGnuplot.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGnuplot.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGnuplot.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindGnuplot.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHSPELL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHSPELL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHSPELL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHSPELL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHTMLHelp.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHTMLHelp.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHTMLHelp.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindHTMLHelp.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindITK.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindITK.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindITK.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindITK.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindImageMagick.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindImageMagick.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindImageMagick.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindImageMagick.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJNI.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJNI.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJNI.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJNI.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJPEG.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJPEG.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJPEG.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJPEG.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJasper.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJasper.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJasper.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJasper.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJava.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJava.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJava.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindJava.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE3.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE3.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE3.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE3.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE4.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE4.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE4.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindKDE4.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLAPACK.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLAPACK.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLAPACK.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLAPACK.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLATEX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLATEX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLATEX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLATEX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXml2.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXml2.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXml2.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXml2.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXslt.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXslt.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXslt.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLibXslt.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua50.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua50.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua50.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua50.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua51.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua51.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua51.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindLua51.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMFC.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMFC.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMFC.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMFC.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG2.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG2.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG2.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPEG2.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPI.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPI.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPI.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMPI.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMatlab.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMatlab.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMatlab.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMatlab.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMotif.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMotif.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMotif.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindMotif.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenAL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenAL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenAL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenAL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenGL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenGL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenGL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenGL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenSSL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenSSL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenSSL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenSSL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenThreads.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenThreads.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenThreads.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindOpenThreads.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPHP4.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPHP4.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPHP4.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPHP4.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPNG.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPNG.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPNG.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPNG.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageHandleStandardArgs.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageHandleStandardArgs.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageHandleStandardArgs.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageHandleStandardArgs.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageMessage.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageMessage.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageMessage.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPackageMessage.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerl.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerl.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerl.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerl.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerlLibs.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerlLibs.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerlLibs.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPerlLibs.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPhysFS.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPhysFS.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPhysFS.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPhysFS.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPike.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPike.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPike.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPike.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPkgConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPkgConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPkgConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPkgConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindProducer.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindProducer.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindProducer.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindProducer.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonInterp.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonInterp.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonInterp.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonInterp.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonLibs.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonLibs.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonLibs.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindPythonLibs.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt3.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt3.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt3.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt3.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt4.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt4.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt4.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQt4.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQuickTime.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQuickTime.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQuickTime.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindQuickTime.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindRuby.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindRuby.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindRuby.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindRuby.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_image.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_image.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_image.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_image.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_mixer.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_mixer.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_mixer.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_mixer.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_net.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_net.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_net.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_net.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_sound.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_sound.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_sound.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_sound.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_ttf.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_ttf.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_ttf.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSDL_ttf.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSWIG.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSWIG.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSWIG.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSWIG.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSelfPackers.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSelfPackers.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSelfPackers.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSelfPackers.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSubversion.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSubversion.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSubversion.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindSubversion.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTCL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTCL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTCL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTCL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTIFF.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTIFF.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTIFF.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTIFF.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclStub.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclStub.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclStub.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclStub.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclsh.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclsh.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclsh.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindTclsh.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindThreads.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindThreads.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindThreads.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindThreads.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindUnixCommands.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindUnixCommands.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindUnixCommands.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindUnixCommands.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindVTK.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindVTK.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindVTK.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindVTK.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWget.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWget.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWget.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWget.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWish.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWish.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWish.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindWish.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindX11.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindX11.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindX11.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindX11.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindXMLRPC.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindXMLRPC.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindXMLRPC.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindXMLRPC.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindZLIB.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindZLIB.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindZLIB.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindZLIB.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Findosg.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Findosg.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Findosg.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Findosg.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgDB.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgDB.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgDB.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgDB.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgFX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgFX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgFX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgFX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgGA.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgGA.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgGA.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgGA.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgIntrospection.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgIntrospection.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgIntrospection.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgIntrospection.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgManipulator.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgManipulator.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgManipulator.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgManipulator.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgParticle.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgParticle.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgParticle.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgParticle.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgProducer.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgProducer.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgProducer.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgProducer.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgShadow.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgShadow.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgShadow.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgShadow.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgSim.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgSim.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgSim.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgSim.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgTerrain.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgTerrain.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgTerrain.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgTerrain.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgText.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgText.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgText.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgText.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgUtil.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgUtil.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgUtil.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgUtil.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgViewer.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgViewer.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgViewer.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindosgViewer.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWidgets.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWidgets.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWidgets.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWidgets.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWindows.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWindows.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWindows.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/FindwxWindows.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/GetPrerequisites.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/GetPrerequisites.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/GetPrerequisites.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/GetPrerequisites.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ITKCompatibility.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ITKCompatibility.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ITKCompatibility.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ITKCompatibility.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/InstallRequiredSystemLibraries.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/InstallRequiredSystemLibraries.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/InstallRequiredSystemLibraries.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/InstallRequiredSystemLibraries.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/KDE3Macros.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/KDE3Macros.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/KDE3Macros.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/KDE3Macros.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacOSXBundleInfo.plist.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacOSXBundleInfo.plist.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacOSXBundleInfo.plist.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacOSXBundleInfo.plist.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacroAddFileDependencies.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacroAddFileDependencies.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacroAddFileDependencies.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/MacroAddFileDependencies.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.InstallOptions.ini.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.InstallOptions.ini.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.InstallOptions.ini.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.InstallOptions.ini.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.template.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.template.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.template.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/NSIS.template.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX-VisualAge-Fortran.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX-VisualAge-Fortran.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX-VisualAge-Fortran.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX-VisualAge-Fortran.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/AIX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BSDOS.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BSDOS.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BSDOS.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BSDOS.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BeOS.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BeOS.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BeOS.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BeOS.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BlueGeneL.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BlueGeneL.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BlueGeneL.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/BlueGeneL.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN-g77.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN-g77.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN-g77.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN-g77.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/CYGWIN.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Catamount.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Catamount.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Catamount.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Catamount.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icc.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icc.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icc.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icc.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icpc.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icpc.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icpc.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-icpc.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-xlc.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-xlc.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-xlc.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin-xlc.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Darwin.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/DragonFly.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/DragonFly.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/DragonFly.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/DragonFly.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/FreeBSD.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/FreeBSD.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/FreeBSD.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/FreeBSD.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/GNU.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/GNU.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/GNU.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/GNU.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-ASM.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-ASM.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-ASM.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-ASM.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-C.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-C.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-C.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-C.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-CXX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-CXX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-CXX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-CXX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-Common.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-Common.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-Common.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-ADSP-Common.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-SDCC-C.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-SDCC-C.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-SDCC-C.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic-SDCC-C.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Generic.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/HP-UX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/HP-UX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/HP-UX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/HP-UX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX64.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX64.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX64.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/IRIX64.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-GNU-Fortran.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-GNU-Fortran.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-GNU-Fortran.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-GNU-Fortran.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-C.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-C.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-C.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-C.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-CXX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-CXX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-CXX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-CXX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-Fortran.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-Fortran.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-Fortran.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-Intel-Fortran.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-C.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-C.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-C.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-C.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-CXX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-CXX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-CXX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-CXX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-Fortran.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-Fortran.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-Fortran.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-PGI-Fortran.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-C.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-C.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-C.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-C.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-CXX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-CXX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-CXX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-CXX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-Fortran.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-Fortran.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-Fortran.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-SunPro-Fortran.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-C.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-C.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-C.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-C.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-Fortran.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-Fortran.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-Fortran.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-VisualAge-Fortran.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-como.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-como.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-como.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-como.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-icpc.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-icpc.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-icpc.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-icpc.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-ifort.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-ifort.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-ifort.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux-ifort.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Linux.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/MP-RAS.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/MP-RAS.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/MP-RAS.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/MP-RAS.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/NetBSD.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/NetBSD.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/NetBSD.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/NetBSD.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OSF1.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OSF1.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OSF1.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OSF1.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OpenBSD.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OpenBSD.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OpenBSD.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/OpenBSD.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/QNX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/QNX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/QNX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/QNX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/RISCos.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/RISCos.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/RISCos.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/RISCos.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SCO_SV.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SCO_SV.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SCO_SV.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SCO_SV.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SINIX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SINIX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SINIX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SINIX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS-SunPro-Fortran.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS-SunPro-Fortran.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS-SunPro-Fortran.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS-SunPro-Fortran.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/SunOS.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Tru64.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Tru64.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Tru64.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Tru64.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/ULTRIX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/ULTRIX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/ULTRIX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/ULTRIX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UNIX_SV.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UNIX_SV.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UNIX_SV.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UNIX_SV.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixPaths.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixPaths.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixPaths.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixPaths.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixWare.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixWare.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixWare.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/UnixWare.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-bcc32.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-bcc32.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-bcc32.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-bcc32.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-cl.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-df.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-df.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-df.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-df.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g++.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g++.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g++.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g++.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g77.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g77.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g77.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-g77.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-gcc.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-gcc.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-gcc.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-gcc.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-icl.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-icl.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-icl.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-icl.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-ifort.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-ifort.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-ifort.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-ifort.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-wcl386.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-wcl386.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-wcl386.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows-wcl386.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Windows.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/WindowsPaths.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/WindowsPaths.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/WindowsPaths.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/WindowsPaths.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Xenix.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Xenix.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Xenix.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/Xenix.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/cl.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/cl.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/cl.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/cl.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/eCos.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/eCos.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/eCos.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/eCos.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/g77.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/g77.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/g77.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/g77.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gas.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gas.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gas.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gas.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gcc.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gcc.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gcc.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/gcc.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/kFreeBSD.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/kFreeBSD.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/kFreeBSD.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/kFreeBSD.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/syllable.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/syllable.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/syllable.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/syllable.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/xlf.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/xlf.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/xlf.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Platform/xlf.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/SystemInformation.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestBigEndian.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestBigEndian.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestBigEndian.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestBigEndian.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestCXXAcceptsFlag.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestCXXAcceptsFlag.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestCXXAcceptsFlag.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestCXXAcceptsFlag.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestEndianess.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestEndianess.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestEndianess.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestEndianess.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIForScope.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIForScope.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIForScope.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIForScope.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForANSIStreamHeaders.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForAnsiForScope.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForAnsiForScope.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForAnsiForScope.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForAnsiForScope.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSSTREAM.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/TestForSTDNamespace.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseEcos.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseEcos.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseEcos.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseEcos.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsePkgConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsePkgConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsePkgConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsePkgConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseQt4.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseQt4.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseQt4.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseQt4.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseSWIG.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseSWIG.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseSWIG.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseSWIG.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTK40.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTK40.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTK40.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTK40.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKBuildSettings40.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKBuildSettings40.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKBuildSettings40.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKBuildSettings40.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKConfig40.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKConfig40.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKConfig40.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UseVTKConfig40.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Use_wxWindows.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Use_wxWindows.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Use_wxWindows.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/Use_wxWindows.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsewxWidgets.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsewxWidgets.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsewxWidgets.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/UsewxWidgets.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/VTKCompatibility.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/VTKCompatibility.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/VTKCompatibility.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/VTKCompatibility.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ecos_clean.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ecos_clean.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ecos_clean.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/ecos_clean.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3init_dummy.cpp.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3init_dummy.cpp.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3init_dummy.cpp.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3init_dummy.cpp.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3uic.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3uic.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3uic.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/kde3uic.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Modules/readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Readme.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Readme.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Readme.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Readme.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/.cvsignore b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/.cvsignore similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/.cvsignore rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/.cvsignore diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/OSXScriptLauncher.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/OSXScriptLauncher.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/OSXScriptLauncher.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/OSXScriptLauncher.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/bills-comments.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/bills-comments.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/bills-comments.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/bills-comments.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackBundleGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackComponentGroup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackConfigure.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackConfigure.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackConfigure.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackConfigure.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinBinaryGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackCygwinSourceGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackDebGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackGeneratorFactory.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackLog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackNSISGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackOSXX11Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackPackageMakerGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackRPMGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackSTGZGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTGZGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarBZip2Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackTarCompressGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cmCPackZIPGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cpack.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cpack.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cpack.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cpack.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cygwin.readme b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cygwin.readme similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cygwin.readme rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CPack/cygwin.readme diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildAndTestHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestBuildHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestConfigureHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestCoverageHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestGenericHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestHandlerCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestMemCheckHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestReadCustomFilesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestRunScriptCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestScriptHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSleepCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestStartCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestSubmitHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestTestHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CTest/cmCTestUpdateHandler.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/.NoDartCoverage b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/.NoDartCoverage similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/.NoDartCoverage rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/.NoDartCoverage diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/ccmake.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/ccmake.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/ccmake.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/ccmake.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesBoolWidget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesCacheEntryComposite.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesDummyWidget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesFilePathWidget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesForm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLabelWidget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesLongMessageForm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesMainForm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesPathWidget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStandardIncludes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStandardIncludes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStandardIncludes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStandardIncludes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesStringWidget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/cmCursesWidget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/.NoDartCoverage b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/.NoDartCoverage similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/.NoDartCoverage rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/.NoDartCoverage diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/READ.ME b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/READ.ME similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/READ.ME rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/READ.ME diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/cmFormConfigure.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/cmFormConfigure.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/cmFormConfigure.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/cmFormConfigure.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/eti.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/eti.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/eti.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/eti.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_arg.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_arg.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_arg.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_arg.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_attr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_attr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_attr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_attr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_current.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_current.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_current.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_current.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_def.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_def.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_def.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_def.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_dup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_dup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_dup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_dup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftchoice.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftchoice.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftchoice.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftchoice.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftlink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftlink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftlink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_ftlink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_just.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_just.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_just.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_just.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_link.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_link.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_link.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_link.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_max.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_max.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_max.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_max.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_move.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_move.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_move.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_move.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_newftyp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_newftyp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_newftyp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_newftyp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_opts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_opts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_opts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_opts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_pad.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_pad.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_pad.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_pad.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_page.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_page.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_page.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_page.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_stat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_stat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_stat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_stat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_type.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_type.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_type.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_type.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_user.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_user.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_user.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fld_user.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.priv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.priv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.priv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/form.priv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_cursor.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_cursor.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_cursor.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_cursor.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_data.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_data.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_data.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_data.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_def.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_def.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_def.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_def.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_driver.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_driver.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_driver.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_driver.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_hook.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_hook.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_hook.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_hook.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_opts.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_opts.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_opts.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_opts.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_page.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_page.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_page.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_page.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_post.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_post.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_post.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_post.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_req_name.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_req_name.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_req_name.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_req_name.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_scale.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_scale.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_scale.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_scale.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_user.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_user.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_user.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_user.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_win.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_win.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_win.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/frm_win.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alnum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alnum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alnum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alnum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alpha.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alpha.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alpha.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_alpha.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_enum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_enum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_enum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_enum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_ipv4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_ipv4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_ipv4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_ipv4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_num.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_num.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_num.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_num.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_regex.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_regex.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_regex.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/fty_regex.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/llib-lform b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/llib-lform similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/llib-lform rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/llib-lform diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/mf_common.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/mf_common.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/mf_common.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/mf_common.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/nc_alloc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/nc_alloc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/nc_alloc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/CursesDialog/form/nc_alloc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUI.fl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUI.fl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUI.fl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUI.fl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/CMakeSetupGUIImplementation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.dsp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.dsp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.dsp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKDialog.dsp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyItemRow.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/FLTKDialog/FLTKPropertyList.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/.cvsignore b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/.cvsignore similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/.cvsignore rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/.cvsignore diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeCommandLineInfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeGenDialog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetup.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupDialog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupManifest.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupManifest.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupManifest.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/CMakeSetupManifest.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/MakeHelp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PathDialog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/PropertyList.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/StdAfx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.rc2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.rc2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.rc2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/res/CMakeSetupDialog.rc2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/resource.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/resource.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/resource.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/MFCDialog/resource.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.ui b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.ui similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.ui rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/AddCacheEntry.ui diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMake.desktop b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMake.desktop similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMake.desktop rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMake.desktop diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.ui b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.ui similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.ui rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeFirstConfigure.ui diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeIngestOSXBundleLibraries.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeIngestOSXBundleLibraries.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeIngestOSXBundleLibraries.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeIngestOSXBundleLibraries.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.icns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.icns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.icns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.icns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.qrc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.qrc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.qrc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.qrc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetup.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.ui b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.ui similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.ui rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/CMakeSetupDialog.ui diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Delete16.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Delete16.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Delete16.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Delete16.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/MacInstallDialog.ui b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/MacInstallDialog.ui similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/MacInstallDialog.ui rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/MacInstallDialog.ui diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Plus16.png b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Plus16.png similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Plus16.png rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/Plus16.png diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMake.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeCacheView.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QCMakeWidgets.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QMacInstallDialog.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QtDialogCPack.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QtDialogCPack.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QtDialogCPack.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/QtDialogCPack.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/cmakecache.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/cmakecache.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/cmakecache.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/cmakecache.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postflight.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postflight.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postflight.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postflight.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postupgrade.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postupgrade.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postupgrade.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/QtDialog/postupgrade.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeIcon.xpm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeIcon.xpm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeIcon.xpm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeIcon.xpm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.pjd b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.pjd similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.pjd rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.pjd diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetup.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CMakeSetupFrame.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/CommandLineInfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.exe.manifest b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.exe.manifest similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.exe.manifest rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.exe.manifest diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/NGDialog.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/PropertyList.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/about.html b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/about.html similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/about.html rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/about.html diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/aboutdlg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/app_resources.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindUPX.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindUPX.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindUPX.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindUPX.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxW.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxW.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxW.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxW.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxWin.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxWin.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxWin.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/FindwxWin.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/UsewxW.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/UsewxW.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/UsewxW.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/bin/UsewxW.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/changelog.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/changelog.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/changelog.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/changelog.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.gif b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.gif similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.gif rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.gif diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.xpm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.xpm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.xpm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_icon.xpm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_logo.xpm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_logo.xpm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_logo.xpm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmake_logo.xpm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.done.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.done.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.done.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.done.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/cmakesetup.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/optionsdlg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/WXDialog/progressdlg.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomCommandCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddCustomTargetCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDefinitionsCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddDependenciesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddExecutableCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddLibraryCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddSubDirectoryCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAddTestCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmAuxSourceDirectoryCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBootstrapCommands.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBootstrapCommands.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBootstrapCommands.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBootstrapCommands.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBreakCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmBuildNameCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakeMinimumRequired.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCMakePolicyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCPluginAPI.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCTest.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCacheManager.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCallVisualStudioMacro.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.in.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.in.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.in.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentLexer.in.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.y b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.y similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.y rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParser.y diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserHelper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserTokens.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserTokens.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserTokens.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentParserTokens.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommandArgumentsHelper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCommands.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeComponentGraph.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkDepends.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeLinkInformation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmComputeTargetDepends.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigure.cmake.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigure.cmake.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigure.cmake.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigure.cmake.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmConfigureFileCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCoreTryCompile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCreateTestSourceList.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmCustomCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmData.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmData.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmData.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmData.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDefinePropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDepends.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsC.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortran.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.in.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.in.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.in.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranLexer.in.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.y b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.y similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.y rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParser.y diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParserTokens.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParserTokens.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParserTokens.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsFortranParserTokens.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJava.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.in.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.in.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.in.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaLexer.in.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.y b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.y similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.y rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParser.y diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserHelper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserTokens.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserTokens.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserTokens.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDependsJavaParserTokens.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentVariables.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterDocbook.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterHTML.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterMan.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterText.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationFormatterUsage.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDocumentationSection.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDumpDocumentation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDumpDocumentation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDumpDocumentation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDumpDocumentation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmDynamicLoader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmELF.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmElseIfCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableLanguageCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEnableTestingCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndForEachCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndFunctionCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndIfCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndMacroCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmEndWhileCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecProgramCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecuteProcessCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecutionStatus.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecutionStatus.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecutionStatus.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExecutionStatus.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportBuildFileGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportFileGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportInstallFileGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExportLibraryDependencies.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.in.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.in.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.in.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprLexer.in.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.y b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.y similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.y rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParser.y diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserHelper.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserTokens.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserTokens.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserTokens.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExprParserTokens.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExternalMakefileProjectGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraCodeBlocksGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmExtraEclipseCDT4Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFLTKWrapUICommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFileTimeComparison.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindBase.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindCommon.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindFileCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindLibraryCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPackageCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindPathCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFindProgramCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmForEachCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionBlocker.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionBlocker.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionBlocker.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionBlocker.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmFunctionCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGeneratedFileStream.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetCMakePropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetDirectoryPropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetFilenameComponentCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetPropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetSourceFilePropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTargetPropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGetTestPropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalBorlandMakefileGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalKdevelopGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMSYSMakefileGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalMinGWMakefileGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalNMakeMakefileGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalUnixMakefileGenerator3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio6Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio71Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio7Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio8Win64Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudio9Win64Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalVisualStudioGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalWatcomWMakeGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCode21Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGlobalXCodeGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGraphAdjacencyList.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGraphAdjacencyList.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGraphAdjacencyList.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmGraphAdjacencyList.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmHexFileConverter.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIfCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeDirectoryCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeExternalMSProjectCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmIncludeRegularExpressionCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallCommandArguments.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallDirectoryGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallExportGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallFilesGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallProgramsCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallScriptGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmInstallTargetsCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkDirectoriesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLinkLibrariesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileCache.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.in.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.in.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.in.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmListFileLexer.in.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCacheCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLoadCommandCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalUnixMakefileGenerator3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio6Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudio7Generator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalVisualStudioGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmLocalXCodeGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMacroCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDepend.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakeDirectoryCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileExecutableTargetGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileLibraryTargetGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileTargetGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMakefileUtilityTargetGenerator.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMarkAsAdvancedCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMathCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmMessageCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmObject.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmObject.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmObject.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmObject.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOptionCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOrderDirectories.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmOutputRequiredFilesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPolicies.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProjectCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmProperty.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinition.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyDefinitionMap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmPropertyMap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapCPPCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmQTWrapUICommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmRemoveDefinitionsCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmReturnCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetDirectoryPropertiesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetPropertyCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetSourceFilesPropertiesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTargetPropertiesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSetTestsPropertiesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSiteNameCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceFileLocation.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSourceGroupCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardIncludes.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardIncludes.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardIncludes.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardIncludes.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardLexer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardLexer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardLexer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStandardLexer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmStringCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSubdirDependsCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmSystemTools.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTarget.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTargetLinkLibrariesCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTest.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryCompileCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmTryRunCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUseMangledMesaCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmUtilitySourceCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableRequiresCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVariableWatchCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmVersion.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWhileCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWin32ProcessExecution.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmWriteFileCommand.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCode21Object.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXCodeObject.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmXMLParser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmake.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakemain.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakemain.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakemain.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakemain.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmaketest.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmaketest.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmaketest.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmaketest.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakewizard.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakexbuild.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakexbuild.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakexbuild.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmakexbuild.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmw9xcom.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmw9xcom.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmw9xcom.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/cmw9xcom.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/ctest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/ctest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/ctest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/ctest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Base64.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeEmptyInputFile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeEmptyInputFile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeEmptyInputFile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeEmptyInputFile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CPU.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CPU.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CPU.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CPU.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CTestConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CTestConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CTestConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CTestConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CheckCXXSourceRuns.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CheckCXXSourceRuns.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CheckCXXSourceRuns.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CheckCXXSourceRuns.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/CommandLineArguments.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Configure.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Copyright.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Copyright.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Copyright.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Copyright.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DateStamp.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DateStamp.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DateStamp.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DateStamp.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Directory.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/DynamicLoader.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/EncodeExecutable.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/EncodeExecutable.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/EncodeExecutable.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/EncodeExecutable.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ExtraTest.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ExtraTest.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ExtraTest.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ExtraTest.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/FundamentalType.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/FundamentalType.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/FundamentalType.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/FundamentalType.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Glob.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/IOStream.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/MD5.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Process.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Process.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Process.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Process.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessFwd9x.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessFwd9x.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessFwd9x.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessFwd9x.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessUNIX.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessUNIX.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessUNIX.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessUNIX.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessWin32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessWin32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessWin32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/ProcessWin32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/README.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/README.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/README.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/README.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Registry.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/RegularExpression.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SharedForward.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SharedForward.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SharedForward.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SharedForward.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/String.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/System.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemInformation.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/SystemTools.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/Terminal.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/auto_ptr.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/auto_ptr.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/auto_ptr.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/auto_ptr.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_fun.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_fun.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_fun.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_fun.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_map.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_map.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_map.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_map.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_set.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_set.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_set.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hash_set.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hashtable.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hashtable.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hashtable.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/hashtable.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysDateStamp.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysHeaderDump.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysHeaderDump.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysHeaderDump.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysHeaderDump.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTests.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTests.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTests.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTests.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsC.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsC.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsC.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsC.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsCXX.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsCXX.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsCXX.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPlatformTestsCXX.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPrivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPrivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPrivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsysPrivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_cstddef.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_cstddef.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_cstddef.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_cstddef.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_fstream.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_fstream.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_fstream.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_fstream.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iosfwd.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iosfwd.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iosfwd.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iosfwd.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iostream.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iostream.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iostream.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_iostream.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_sstream.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_sstream.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_sstream.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_ios_sstream.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl_string.hxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl_string.hxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl_string.hxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/kwsys_stl_string.hxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testAutoPtr.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testAutoPtr.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testAutoPtr.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testAutoPtr.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testCommandLineArguments1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynamicLoader.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynamicLoader.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynamicLoader.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynamicLoader.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynload.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynload.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynload.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testDynload.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testEncode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testEncode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testEncode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testEncode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testFail.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testFail.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testFail.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testFail.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testHashSTL.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testHashSTL.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testHashSTL.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testHashSTL.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testIOS.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testIOS.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testIOS.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testIOS.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testProcess.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testProcess.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testProcess.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testProcess.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testRegistry.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testRegistry.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testRegistry.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testRegistry.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemInformation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemInformation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemInformation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemInformation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.bin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.bin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.bin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.bin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testSystemTools.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testTerminal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testTerminal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testTerminal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Source/kwsys/testTerminal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/AppleInfo.plist b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/AppleInfo.plist similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/AppleInfo.plist rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/AppleInfo.plist diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros1.vsmacros b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros1.vsmacros similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros1.vsmacros rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros1.vsmacros diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros2.vsmacros b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros2.vsmacros similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros2.vsmacros rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVSMacros2.vsmacros diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVisualStudio6Configurations.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVisualStudio6Configurations.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVisualStudio6Configurations.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CMakeVisualStudio6Configurations.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericDescription.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericDescription.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericDescription.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericDescription.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericLicense.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericLicense.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericLicense.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericLicense.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericWelcome.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericWelcome.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericWelcome.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPack.GenericWelcome.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPackConfig.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPackConfig.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPackConfig.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CPackConfig.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CTestScript.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CTestScript.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CTestScript.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/CTestScript.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLFooter.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLFooter.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLFooter.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLFooter.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLHeader.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLHeader.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLHeader.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/DLLHeader.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEFooter.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEFooter.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEFooter.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEFooter.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEHeader.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEHeader.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEHeader.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEHeader.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEWinHeader.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEWinHeader.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEWinHeader.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/EXEWinHeader.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/TestDriver.cxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/TestDriver.cxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/TestDriver.cxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/TestDriver.cxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityFooter.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityFooter.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityFooter.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityFooter.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityHeader.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityHeader.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityHeader.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/UtilityHeader.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/cygwin-package.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/cygwin-package.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/cygwin-package.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/cygwin-package.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibFooter.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibFooter.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibFooter.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibFooter.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibHeader.dsptemplate b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibHeader.dsptemplate similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibHeader.dsptemplate rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Templates/staticLibHeader.dsptemplate diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/.NoDartCoverage b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/.NoDartCoverage similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/.NoDartCoverage rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/.NoDartCoverage diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main-linux-x86-gas.s b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main-linux-x86-gas.s similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main-linux-x86-gas.s rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main-linux-x86-gas.s diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Assembler/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/bar.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/bar.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/bar.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/bar.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep_custom.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep_custom.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep_custom.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/dep_custom.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_dir.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_dir.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_dir.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_dir.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_tgt.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_tgt.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_tgt.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BuildDepends/Project/zot_macro_tgt.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/BundleIcon.icns b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/BundleIcon.icns similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/BundleIcon.icns rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/BundleIcon.icns diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Executable.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Executable.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Executable.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Executable.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Info.plist b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Info.plist similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Info.plist rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Info.plist diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Library.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Library.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Library.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/Library.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/StartupCommand b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/StartupCommand similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/StartupCommand rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleGeneratorTest/StartupCommand diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleLib.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleLib.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleLib.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleLib.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleSubDir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleSubDir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleSubDir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleSubDir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleTest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleTest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleTest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/BundleTest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/SomeRandomFile.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/SomeRandomFile.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/SomeRandomFile.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/SomeRandomFile.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/randomResourceFile.plist.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/randomResourceFile.plist.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/randomResourceFile.plist.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/BundleTest/randomResourceFile.plist.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/A/include/cmake_i_do_not_exist_in_the_system.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/A/include/cmake_i_do_not_exist_in_the_system.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/A/include/cmake_i_do_not_exist_in_the_system.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/A/include/cmake_i_do_not_exist_in_the_system.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/DummyToolchain.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/DummyToolchain.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/DummyToolchain.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/DummyToolchain.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/FindBaseTest.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/FindBaseTest.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/FindBaseTest.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/FindBaseTest.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/GetPrerequisitesTest.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/GetPrerequisitesTest.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/GetPrerequisitesTest.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/GetPrerequisitesTest.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/IncludeTest.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/IncludeTest.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/IncludeTest.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/IncludeTest.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ListTest.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ListTest.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ListTest.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ListTest.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ToolchainTest.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ToolchainTest.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ToolchainTest.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/ToolchainTest.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/VariableWatchTest.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/VariableWatchTest.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/VariableWatchTest.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/VariableWatchTest.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/include/cmake_i_do_not_exist_in_the_system.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/include/cmake_i_do_not_exist_in_the_system.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/include/cmake_i_do_not_exist_in_the_system.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CMakeTests/include/cmake_i_do_not_exist_in_the_system.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/conly.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/conly.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/conly.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/conly.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/COnly/libc2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/VerifyResult.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/VerifyResult.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/VerifyResult.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/VerifyResult.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylibapp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylibapp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylibapp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CPackComponents/mylibapp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/test.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/test.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/test.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest/test.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/test.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/test.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/test.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest2/test.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest3/test.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest3/test.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest3/test.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CTestTest3/test.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CommandLineTest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CommandLineTest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CommandLineTest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/CommandLineTest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/PreLoad.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/PreLoad.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/PreLoad.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CommandLineTest/PreLoad.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Cache/CMakeCache.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Cache/CMakeCache.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Cache/CMakeCache.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Cache/CMakeCache.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.hh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.hh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.hh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.hh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/A.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Included.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Included.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Included.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Included.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub1/NameConflictTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub1/NameConflictTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub1/NameConflictTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub1/NameConflictTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub2/NameConflictTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub2/NameConflictTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub2/NameConflictTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Sub2/NameConflictTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Temp/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Temp/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Temp/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/Temp/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/cmVersion.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/cmVersion.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/cmVersion.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/cmVersion.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.file.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.file.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.file.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex.file.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex_nobuild.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex_nobuild.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex_nobuild.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/complex_nobuild.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/notInAllExe.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/notInAllExe.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/notInAllExe.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/notInAllExe.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testSystemDir.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testSystemDir.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testSystemDir.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testSystemDir.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testcflags.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testcflags.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testcflags.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Executable/testcflags.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/ExtraSources/file1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/SystemDir/testSystemDir.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/SystemDir/testSystemDir.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/SystemDir/testSystemDir.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/SystemDir/testSystemDir.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/TestLink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/TestLink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/TestLink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/TestLink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/create_file.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/create_file.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/create_file.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/create_file.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/dummy b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/dummy similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/dummy rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/dummy diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/empty.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/empty.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/empty.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/empty.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/file2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/moduleFile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/notInAllLib.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/notInAllLib.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/notInAllLib.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/notInAllLib.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/sharedFile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/testConly.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/test_preprocess.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/test_preprocess.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/test_preprocess.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/Library/test_preprocess.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/VarTests.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/VarTests.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/VarTests.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/VarTests.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigure.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigure.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigure.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigure.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigureEscape.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigureEscape.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigureEscape.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestConfigureEscape.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestGeneratedHeader.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestGeneratedHeader.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestGeneratedHeader.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Complex/cmTestGeneratedHeader.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Cache/CMakeCache.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Cache/CMakeCache.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Cache/CMakeCache.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Cache/CMakeCache.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.hh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.hh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.hh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.hh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/A.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Included.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Included.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Included.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Included.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub1/NameConflictTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub1/NameConflictTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub1/NameConflictTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub1/NameConflictTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub2/NameConflictTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub2/NameConflictTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub2/NameConflictTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Sub2/NameConflictTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Temp/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Temp/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Temp/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/Temp/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/cmVersion.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/cmVersion.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/cmVersion.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/cmVersion.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.file.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.file.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.file.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex.file.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex_nobuild.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex_nobuild.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex_nobuild.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/complex_nobuild.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/notInAllExe.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/notInAllExe.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/notInAllExe.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/notInAllExe.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testSystemDir.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testSystemDir.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testSystemDir.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testSystemDir.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testcflags.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testcflags.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testcflags.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Executable/testcflags.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/ExtraSources/file1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/SystemDir/testSystemDir.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/SystemDir/testSystemDir.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/SystemDir/testSystemDir.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/SystemDir/testSystemDir.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/TestLink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/TestLink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/TestLink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/TestLink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/create_file.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/create_file.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/create_file.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/create_file.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/dummy b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/dummy similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/dummy rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/dummy diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/empty.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/empty.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/empty.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/empty.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/file2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/moduleFile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/notInAllLib.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/notInAllLib.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/notInAllLib.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/notInAllLib.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/sharedFile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/testConly.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/test_preprocess.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/test_preprocess.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/test_preprocess.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/Library/test_preprocess.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/VarTests.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/VarTests.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/VarTests.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/VarTests.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigure.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigure.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigure.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigure.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigureEscape.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigureEscape.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigureEscape.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestConfigureEscape.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestGeneratedHeader.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestGeneratedHeader.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestGeneratedHeader.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexOneConfig/cmTestGeneratedHeader.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Cache/CMakeCache.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Cache/CMakeCache.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Cache/CMakeCache.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Cache/CMakeCache.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.hh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.hh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.hh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.hh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/A.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Included.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Included.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Included.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Included.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub1/NameConflictTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub1/NameConflictTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub1/NameConflictTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub1/NameConflictTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub2/NameConflictTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub2/NameConflictTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub2/NameConflictTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Sub2/NameConflictTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Temp/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Temp/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Temp/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/Temp/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/cmVersion.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/cmVersion.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/cmVersion.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/cmVersion.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.file.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.file.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.file.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex.file.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex_nobuild.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex_nobuild.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex_nobuild.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/complex_nobuild.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/notInAllExe.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/notInAllExe.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/notInAllExe.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/notInAllExe.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testSystemDir.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testSystemDir.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testSystemDir.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testSystemDir.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testcflags.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testcflags.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testcflags.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Executable/testcflags.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/ExtraSources/file1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/SystemDir/testSystemDir.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/SystemDir/testSystemDir.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/SystemDir/testSystemDir.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/SystemDir/testSystemDir.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/TestLink.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/TestLink.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/TestLink.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/TestLink.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/create_file.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/create_file.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/create_file.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/create_file.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/dummy b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/dummy similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/dummy rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/dummy diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/empty.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/empty.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/empty.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/empty.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/file2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/moduleFile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/notInAllLib.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/notInAllLib.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/notInAllLib.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/notInAllLib.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/sharedFile.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/testConly.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/test_preprocess.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/test_preprocess.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/test_preprocess.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/Library/test_preprocess.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/VarTests.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/VarTests.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/VarTests.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/VarTests.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigure.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigure.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigure.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigure.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigureEscape.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigureEscape.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigureEscape.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestConfigureEscape.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestGeneratedHeader.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestGeneratedHeader.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestGeneratedHeader.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ComplexRelativePaths/cmTestGeneratedHeader.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bartest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bartest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bartest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/bartest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/foo.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/foo.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/foo.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/foo.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/sub1/car.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/sub1/car.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/sub1/car.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ConvLibrary/sub1/car.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/bar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/bar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/bar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/bar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/foo.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/foo.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/foo.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustComDepend/foo.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/generated.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/generated.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/generated.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/generated.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratedHeader/main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratorInExtraDir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratorInExtraDir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratorInExtraDir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/GeneratorInExtraDir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_command_line.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_command_line.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_command_line.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_command_line.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_mark.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_mark.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_mark.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/check_mark.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/doc1.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/doc1.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/doc1.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/doc1.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/foo.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/gen_redirect_in.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/gen_redirect_in.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/gen_redirect_in.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/gen_redirect_in.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/generator.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/generator.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/generator.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/generator.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/main.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/main.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/main.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/main.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/tcat.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/tcat.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/tcat.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/tcat.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapped.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapped.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapped.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapped.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapper.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapper.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapper.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommand/wrapper.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/customTarget.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/customTarget.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/customTarget.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/customTarget.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/working.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/working.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/working.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CustomCommandWorkingDirectory/working.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/cxxonly.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/cxxonly.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/cxxonly.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/cxxonly.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/CxxOnly/libcxx2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/OneSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/OneSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/OneSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/1/OneSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/a.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/a.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/a.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/a.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/b2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/c2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/d.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/d.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/d.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/d.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case1/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/bar3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1b.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1b.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1b.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo1b.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2b.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2b.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2b.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo2b.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3b.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3b.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3b.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/foo3b.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/zot.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/zot.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/zot.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case2/zot.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/bar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/bar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/bar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/bar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1b.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1b.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1b.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo1b.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Case3/foo2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/EightSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/EightSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/EightSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Eight/EightSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/ExecMain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/ExecMain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/ExecMain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec/ExecMain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/ExecMain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/ExecMain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/ExecMain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec2/ExecMain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/ExecMain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/ExecMain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/ExecMain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec3/ExecMain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/ExecMain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/ExecMain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/ExecMain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Exec4/ExecMain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/FiveSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/FiveSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/FiveSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Five/FiveSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/FourSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/FourSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/FourSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Four/FourSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/NoDepASrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/NoDepASrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/NoDepASrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepA/NoDepASrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/NoDepBSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/NoDepBSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/NoDepBSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepB/NoDepBSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/NoDepCSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/NoDepCSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/NoDepCSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/NoDepC/NoDepCSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/SevenSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/SevenSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/SevenSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Seven/SevenSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixASrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixASrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixASrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixASrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixBSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixBSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixBSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Six/SixBSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/ThreeSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/ThreeSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/ThreeSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Three/ThreeSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoCustomSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoCustomSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoCustomSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoCustomSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoSrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoSrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoSrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/TwoSrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/two-test.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/two-test.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/two-test.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Dependency/Two/two-test.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/DocTest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/DocTest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/DocTest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/DocTest/DocTest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe1lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2lib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2lib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2lib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2lib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2libImp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2libImp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2libImp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe2libImp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testExe3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3Imp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3Imp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3Imp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib3Imp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Export/testLib4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_mod1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_mod1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_mod1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_mod1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_testExe1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_testExe1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_testExe1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/Import/imp_testExe1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExportImport/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_main.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_main.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_main.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_main.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_object.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_object.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_object.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/Object/external_object.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/executable.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/executable.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/executable.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ExternalOBJ/executable.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindModulesExecuteAll/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/A/wibble-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/A/wibble-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/A/wibble-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/A/wibble-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/B/wibble-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/B/wibble-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/B/wibble-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/B/wibble-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindPackageTest.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindPackageTest.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindPackageTest.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindPackageTest.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestA.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestA.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestA.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestA.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestB.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestB.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestB.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestB.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestC.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestC.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestC.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/FindVersionTestC.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/TAppConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/TAppConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/TAppConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/TAppConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/cmake/tapp-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/cmake/tapp-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/cmake/tapp-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TApp.app/Contents/Resources/cmake/tapp-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/CMake/TFrameworkConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/CMake/TFrameworkConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/CMake/TFrameworkConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/CMake/TFrameworkConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/tframework-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/tframework-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/tframework-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/TFramework.framework/Versions/A/Resources/tframework-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/include/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/include/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/include/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/include/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/BarConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/BarConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/BarConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/BarConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/cmake/bar-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/cmake/bar-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/cmake/bar-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/Bar/cmake/bar-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/TApp/TAppConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/TApp/TAppConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/TApp/TAppConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/TApp/TAppConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/CMake/FooConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/CMake/FooConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/CMake/FooConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/CMake/FooConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/foo-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/foo-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/foo-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/foo-1.2/foo-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfigVersion.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfigVersion.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfigVersion.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/suffix/test/SuffixTestConfigVersion.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-1.0/zot-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-1.0/zot-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-1.0/zot-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-1.0/zot-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config-version.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config-version.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config-version.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config-version.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-2.0/zot-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config-version.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config-version.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config-version.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config-version.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.0/zot-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config-version.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config-version.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config-version.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config-version.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FindPackageTest/lib/zot-3.1/zot-config.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/main.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/main.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/main.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Executable/main.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/a.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/a.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/a.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/External/a.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/a.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/a.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/a.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/a.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/b.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/b.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/b.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/b.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/main.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/main.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/main.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/Library/main.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/hello.f b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/hello.f similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/hello.f rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/hello.f diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/main.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/main.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/main.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/main.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/module.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/module.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/module.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/in_interface/module.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_implementation.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_implementation.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_implementation.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_implementation.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_interface.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_interface.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_interface.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_interface.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_main.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_main.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_main.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_module_main.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_preprocess.F90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_preprocess.F90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_preprocess.F90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_preprocess.F90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_fixedform.f b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_fixedform.f similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_fixedform.f rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_fixedform.f diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_freeform.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_freeform.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_freeform.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Fortran/test_use_in_comment_freeform.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/bar.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/bar.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/bar.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/bar.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/foo2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooBoth.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooBoth.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooBoth.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooBoth.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooDeepPublic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooDeepPublic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooDeepPublic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooDeepPublic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooNeither.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooNeither.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooNeither.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooNeither.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPrivate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPrivate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPrivate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPrivate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPublic.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPublic.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPublic.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/fooPublic.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/test.lua b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/test.lua similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/test.lua rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Framework/test.lua diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/SubDirScope/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/SubDirScope/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/SubDirScope/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/SubDirScope/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/Util.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/Util.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/Util.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/Util.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/functionTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/functionTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/functionTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/FunctionTest/functionTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/A.java b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/A.java similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/A.java rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/A.java diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/HelloWorld.java b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/HelloWorld.java similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/HelloWorld.java rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Java/HelloWorld.java diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/jumpExecutable.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/jumpExecutable.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/jumpExecutable.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Executable/jumpExecutable.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/jumpShared.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/jumpShared.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/jumpShared.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Shared/jumpShared.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/jumpStatic.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/jumpStatic.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/jumpStatic.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Jump/Library/Static/jumpStatic.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/bar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/bar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/bar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/bar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foobar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foobar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foobar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LibName/foobar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Exec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Exec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Exec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Exec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/One.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/One.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/One.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/One.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Two.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Two.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Two.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLine/Two.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Exec2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepA.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepA.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepA.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepA.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepB.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepB.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepB.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepB.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepC.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepC.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepC.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepC.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepE.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepE.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepE.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepE.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepF.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepF.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepF.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepF.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepX.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepX.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepX.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepX.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepY.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepY.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepY.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepY.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepZ.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepZ.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepZ.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/NoDepZ.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/One.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/One.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/One.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/One.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Two.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Two.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Two.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LinkLineOrder/Two.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/cmTestCommand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/cmTestCommand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/cmTestCommand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeCommands/cmTestCommand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.cxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.cxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.cxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.cxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommand/LoadedCommand.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.cxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.cxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.cxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.cxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/LoadCommandOneConfig/LoadedCommand.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/macroTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/macroTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/macroTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MacroTest/macroTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/ToCleanFiles.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/ToCleanFiles.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/ToCleanFiles.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/ToCleanFiles.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/toclean.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/toclean.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/toclean.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/ToClean/toclean.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/check_clean.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/check_clean.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/check_clean.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MakeClean/check_clean.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestExec.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestExec.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestExec.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestExec.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestTests.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestTests.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestTests.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/MathTest/MathTestTests.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/cxxonly.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/cxxonly.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/cxxonly.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/cxxonly.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx2.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx2.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx2.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/NewlineArgs/libcxx2.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/objc++.mm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/objc++.mm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/objc++.mm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ObjC++/objc++.mm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/outlib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/outlib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/outlib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfBinary/outlib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/OutOfSourceSubdir/testlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/SubDir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/SubDir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/SubDir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/SubDir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/simple.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/simple.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/simple.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/simple.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/testdp.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/testdp.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/testdp.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/OutOfSource/testdp.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/include/example.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/include/example.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/include/example.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/include/example.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_exe.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_mod_1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_mod_1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_mod_1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Plugin/src/example_mod_1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/simpleLib.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/simpleLib.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/simpleLib.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/Library/simpleLib.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/simple.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/simple.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/simple.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PreOrder/simple.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo_precompile.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo_precompile.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo_precompile.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/foo_precompile.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo_precompiled.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo_precompiled.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo_precompiled.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/PrecompiledHeader/include/foo_precompiled.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/file_def.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/file_def.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/file_def.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/file_def.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess_vs6.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess_vs6.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess_vs6.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/preprocess_vs6.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/target_def.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/target_def.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/target_def.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Preprocess/target_def.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/SubDir/properties3.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/SubDir/properties3.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/SubDir/properties3.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/SubDir/properties3.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Properties/properties2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/returnTest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/returnTest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/returnTest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/returnTest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/subdir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/subdir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/subdir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/ReturnTest/subdir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/bar2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/foo2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/RuntimePath/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/conly.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/conly.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/conly.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Exe1/conly.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SameName/Lib1/libc1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/bar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/bar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/bar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/bar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SetLang/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simple.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simple.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simple.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simple.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleCLib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleCLib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleCLib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleCLib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleLib.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleLib.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleLib.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleLib.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleWe.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleWe.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleWe.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Simple/simpleWe.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/bar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/bar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/bar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/bar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleCOnly/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirA/t5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t6.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t6.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t6.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t6.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t7.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t7.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t7.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirC/dirB/t7.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t9.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t9.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t9.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/dirD/t9.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/run.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/run.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/run.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleExclude/run.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript1.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript1.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript1.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript1.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript2.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript2.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript2.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript2.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript3.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript3.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript3.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript3.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript4.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript4.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript4.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/InstallScript4.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PackageScript.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PackageScript.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PackageScript.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PackageScript.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PostInstall.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PostInstall.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PostInstall.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PostInstall.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PreInstall.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PreInstall.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PreInstall.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/PreInstall.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/inst2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/lib4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstall/scripts/sample_script.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript1.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript1.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript1.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript1.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript2.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript2.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript2.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript2.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript3.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript3.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript3.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript3.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript4.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript4.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript4.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/InstallScript4.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PackageScript.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PackageScript.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PackageScript.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PackageScript.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PostInstall.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PostInstall.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PostInstall.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PostInstall.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PreInstall.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PreInstall.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PreInstall.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/PreInstall.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/TestSubDir/TSD_utils.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/inst2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/lib4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SimpleInstallS2/scripts/sample_script.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/bar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/bar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/bar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/bar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/baz.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/baz.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/baz.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/baz.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foobar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foobar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foobar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SourceGroups/sub1/foobar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/InputFile.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/InputFile.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/InputFile.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/InputFile.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/StringFile.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/StringFile.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/StringFile.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/StringFile.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.ihx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.ihx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.ihx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.ihx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.srec b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.srec similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.srec rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/StringFileTest/main.srec diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair+int.int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair+int.int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair+int.int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair+int.int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair_int.int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair_int.int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair_int.int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/pair_int.int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/secondone.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/secondone.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/secondone.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/secondone.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/testfromsubdir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/testfromsubdir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/testfromsubdir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/AnotherSubdir/testfromsubdir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/example1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/example1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/example1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example1/example1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/example2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/example2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/example2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Examples/example2/example2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/test.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/test.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/test.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/Executable/test.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair+int.int1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair+int.int1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair+int.int1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair+int.int1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_int.int1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_int.int1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_int.int1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_int.int1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/thirdone.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/thirdone.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/thirdone.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/ThirdSubDir/thirdone.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm+vcl_pair+double.foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm+vcl_pair+double.foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm+vcl_pair+double.foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm+vcl_pair+double.foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm_vcl_pair_double.foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm_vcl_pair_double.foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm_vcl_pair_double.foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDir/vcl_algorithm_vcl_pair_double.foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Entries b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Entries similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Entries rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Entries diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Repository b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Repository similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Repository rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Repository diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Root b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Root similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Root rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/CVS/Root diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair+int.int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair+int.int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair+int.int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair+int.int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair_int.int.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair_int.int.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair_int.int.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/pair_int.int.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/secondone.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/secondone.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/secondone.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/secondone.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Entries b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Entries similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Entries rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Entries diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Repository b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Repository similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Repository rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Repository diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Root b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Root similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Root rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/CVS/Root diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/test.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/test.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/test.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Executable Sources/test.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Entries b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Entries similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Entries rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Entries diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Repository b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Repository similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Repository rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Repository diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Root b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Root similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Root rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/CVS/Root diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Entries b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Entries similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Entries rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Entries diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Repository b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Repository similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Repository rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Repository diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Root b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Root similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Root rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/CVS/Root diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/example1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/example1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/example1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example1/example1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Entries b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Entries similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Entries rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Entries diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Repository b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Repository similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Repository rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Repository diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Root b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Root similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Root rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/CVS/Root diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/example2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/example2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/example2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some Examples/example2/example2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Entries b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Entries similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Entries rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Entries diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Repository b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Repository similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Repository rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Repository diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Root b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Root similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Root rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/CVS/Root diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/Some(x86) Sources/test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair+int.int1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair+int.int1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair+int.int1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair+int.int1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_int.int1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_int.int1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_int.int1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_int.int1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_p_int.int1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_p_int.int1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_p_int.int1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/pair_p_int.int1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/testfromauxsubdir.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/testfromauxsubdir.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/testfromauxsubdir.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/testfromauxsubdir.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/thirdone.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/thirdone.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/thirdone.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/ThirdSubDir/thirdone.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm+vcl_pair+double.foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm+vcl_pair+double.foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm+vcl_pair+double.foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm+vcl_pair+double.foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm_vcl_pair_double.foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm_vcl_pair_double.foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm_vcl_pair_double.foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubDirSpaces/vcl_algorithm_vcl_pair_double.foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/bar.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/bar.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/bar.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/bar.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/car.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/car.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/car.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/car.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/foo.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/foo.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/foo.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SubProject/foo/foo.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.i b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.i similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.i rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/example.i diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.php4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.php4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.php4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.php4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pike b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pike similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pike rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pike diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.pl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.rb b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.rb similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.rb rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.rb diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.tcl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.tcl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.tcl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme.tcl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme2.tcl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme2.tcl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme2.tcl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SwigTest/runme2.tcl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/DumpInformation.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/SystemInformation.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/SystemInformation.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/SystemInformation.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/SystemInformation/SystemInformation.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/TestTarExec.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/TestTarExec.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/TestTarExec.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TarTest/TestTarExec.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/hello_world.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/hello_world.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/hello_world.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/executables/hello_world.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/hello_world b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/hello_world similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/hello_world rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TargetName/scripts/hello_world diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/subdir/test3.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/subdir/test3.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/subdir/test3.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/subdir/test3.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test1.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test1.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test1.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test1.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/test2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testArgs.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testArgs.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testArgs.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testArgs.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff3.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff3.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff3.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestDriver/testExtraStuff3.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestInstall.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestInstall.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestInstall.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TestInstall.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/DartConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/DartConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/DartConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/DartConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/testing2.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/testing2.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/testing2.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/Sub/Sub2/testing2.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/testing.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/testing.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/testing.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Testing/testing.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_success.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_success.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_success.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_success.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_with_error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_with_error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_with_error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/exit_with_error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/fail.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/fail.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/fail.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/fail.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/pass.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/pass.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/pass.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/TryCompile/pass.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/TutorialConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/TutorialConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/TutorialConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/TutorialConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/tutorial.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/tutorial.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/tutorial.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step1/tutorial.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/MathFunctions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/MathFunctions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/MathFunctions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/MathFunctions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/mysqrt.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/mysqrt.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/mysqrt.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/MathFunctions/mysqrt.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/TutorialConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/TutorialConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/TutorialConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/TutorialConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/tutorial.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/tutorial.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/tutorial.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step2/tutorial.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/MathFunctions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/MathFunctions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/MathFunctions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/MathFunctions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/mysqrt.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/mysqrt.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/mysqrt.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/MathFunctions/mysqrt.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/TutorialConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/TutorialConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/TutorialConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/TutorialConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/tutorial.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/tutorial.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/tutorial.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step3/tutorial.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/MathFunctions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/MathFunctions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/MathFunctions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/MathFunctions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/mysqrt.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/mysqrt.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/mysqrt.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/MathFunctions/mysqrt.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/TutorialConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/TutorialConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/TutorialConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/TutorialConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/tutorial.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/tutorial.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/tutorial.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step4/tutorial.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MakeTable.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MakeTable.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MakeTable.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MakeTable.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MathFunctions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MathFunctions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MathFunctions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/MathFunctions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/mysqrt.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/mysqrt.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/mysqrt.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/MathFunctions/mysqrt.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/TutorialConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/TutorialConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/TutorialConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/TutorialConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/tutorial.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/tutorial.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/tutorial.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step5/tutorial.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/License.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/License.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/License.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/License.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MakeTable.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MakeTable.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MakeTable.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MakeTable.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MathFunctions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MathFunctions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MathFunctions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/MathFunctions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/mysqrt.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/mysqrt.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/mysqrt.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/MathFunctions/mysqrt.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/TutorialConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/TutorialConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/TutorialConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/TutorialConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/tutorial.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/tutorial.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/tutorial.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step6/tutorial.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CTestConfig.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CTestConfig.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CTestConfig.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/CTestConfig.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/License.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/License.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/License.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/License.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MakeTable.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MakeTable.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MakeTable.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MakeTable.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MathFunctions.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MathFunctions.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MathFunctions.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/MathFunctions.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/mysqrt.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/mysqrt.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/mysqrt.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/MathFunctions/mysqrt.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/TutorialConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/TutorialConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/TutorialConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/TutorialConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build1.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build1.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build1.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build1.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build2.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build2.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build2.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/build2.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/tutorial.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/tutorial.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/tutorial.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Tutorial/Step7/tutorial.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/WX.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/WX.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/WX.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/UseWX/WX.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib1/lib1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/Lib2/lib2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/VSExternalInclude/main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/Wrap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/Wrap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/Wrap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/Wrap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/dummy b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/dummy similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/dummy rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/dummy diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fakefluid.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fakefluid.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fakefluid.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fakefluid.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fltk1.fl b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fltk1.fl similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fltk1.fl rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/fltk1.fl diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/foo.ui.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/foo.ui.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/foo.ui.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/foo.ui.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/hints b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/hints similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/hints rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/hints diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/itkWrapperConfig.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/itkWrapperConfig.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/itkWrapperConfig.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/itkWrapperConfig.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtnoqtmain.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtnoqtmain.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtnoqtmain.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtnoqtmain.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrapping.ui b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrapping.ui similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrapping.ui rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrapping.ui diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrappingmain.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrappingmain.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrappingmain.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/qtwrappingmain.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkExcluded.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkIncluded.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkTestMoc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkTestMoc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkTestMoc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/vtkTestMoc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/wrapping.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/wrapping.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/wrapping.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/Wrapping/wrapping.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/HelloWorldX11.cxx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/HelloWorldX11.cxx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/HelloWorldX11.cxx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/HelloWorldX11.cxx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/X11.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/X11.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/X11.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Tests/X11/X11.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/.NoDartCoverage b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/.NoDartCoverage similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/.NoDartCoverage rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/.NoDartCoverage diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/authors.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/authors.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/authors.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/authors.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doc_makeall.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doc_makeall.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doc_makeall.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doc_makeall.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doxyfile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doxyfile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doxyfile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Doxygen/doxyfile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMake.kws.xml.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMake.kws.xml.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMake.kws.xml.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMake.kws.xml.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeFiles.txt.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeFiles.txt.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeFiles.txt.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeFiles.txt.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeMoreChecks.kws.xml.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeMoreChecks.kws.xml.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeMoreChecks.kws.xml.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeMoreChecks.kws.xml.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeOverwrite.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeOverwrite.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeOverwrite.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/CMakeOverwrite.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/Headers/CMakeHeader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/Headers/CMakeHeader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/Headers/CMakeHeader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/KWStyle/Headers/CMakeHeader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeInstall.bmp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeInstall.bmp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeInstall.bmp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeInstall.bmp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeLogo.ico b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeLogo.ico similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeLogo.ico rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/CMakeLogo.ico diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/README.cygwin.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/README.cygwin.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/README.cygwin.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/README.cygwin.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-package.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-package.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-package.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-package.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-patch.diff.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-patch.diff.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-patch.diff.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-patch.diff.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-setup.hint.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-setup.hint.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-setup.hint.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/Cygwin/cygwin-setup.hint.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/create-cmake-release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/create-cmake-release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/create-cmake-release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/create-cmake-release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashmacmini2_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashmacmini2_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashmacmini2_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashmacmini2_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release64.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release64.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release64.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsgi1_release64.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsun1_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsun1_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsun1_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/dashsun1_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/destiny_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/destiny_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/destiny_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/destiny_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/hythloth_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/hythloth_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/hythloth_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/hythloth_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/magrathea_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/magrathea_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/magrathea_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/magrathea_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release64.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release64.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release64.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/muse_release64.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r15n65_aix_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r15n65_aix_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r15n65_aix_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r15n65_aix_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r36n11_aix_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r36n11_aix_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r36n11_aix_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/r36n11_aix_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.sh.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.sh.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.sh.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/release_cmake.sh.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/upload_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/upload_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/upload_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/upload_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/v60n177_aix_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/v60n177_aix_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/v60n177_aix_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/v60n177_aix_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_cygwin.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_cygwin.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_cygwin.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_cygwin.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_release.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_release.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_release.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/Release/vogon_release.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmThirdParty.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmThirdParty.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmThirdParty.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmThirdParty.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_curl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_curl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_curl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_curl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_expat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_expat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_expat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_expat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_xmlrpc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_xmlrpc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_xmlrpc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_xmlrpc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_zlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_zlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_zlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cm_zlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/cmcompress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/compress.c.original b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/compress.c.original similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/compress.c.original rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcompress/compress.c.original diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CMakeConfigurableFile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CMakeConfigurableFile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CMakeConfigurableFile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CMakeConfigurableFile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CheckTypeSize.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceCompiles.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceRuns.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceRuns.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceRuns.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlCheckCSourceRuns.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlTests.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlTests.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlTests.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/CurlTests.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/OtherTests.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/OtherTests.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/OtherTests.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMake/OtherTests.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/WindowsCache.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/WindowsCache.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/WindowsCache.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/WindowsCache.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/config-aix.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/config-aix.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/config-aix.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Platforms/config-aix.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curlgtk.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curlgtk.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curlgtk.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curlgtk.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curltest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curltest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curltest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/curltest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpget.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpget.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpget.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpget.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpgetresp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpgetresp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpgetresp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpgetresp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpupload.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpupload.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpupload.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/ftpupload.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/getinmemory.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/getinmemory.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/getinmemory.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/getinmemory.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/http-post.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/http-post.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/http-post.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/http-post.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/httpput.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/httpput.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/httpput.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/httpput.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/multithread.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/multithread.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/multithread.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/multithread.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/persistant.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/persistant.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/persistant.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/persistant.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/postit2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/postit2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/postit2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/postit2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/sepheaders.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/sepheaders.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/sepheaders.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/sepheaders.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simple.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simple.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simple.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simple.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simplessl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simplessl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simplessl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/simplessl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/testconfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/testconfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/testconfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/testconfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/win32sockets.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/win32sockets.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/win32sockets.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/Testing/win32sockets.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/amigaos.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/arpa_telnet.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/arpa_telnet.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/arpa_telnet.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/arpa_telnet.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/base64.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ca-bundle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ca-bundle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ca-bundle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ca-bundle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/connect.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/content_encoding.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/cookie.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl.copyright b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl.copyright similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl.copyright rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl.copyright diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curlver.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curlver.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curlver.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/curlver.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/easy.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/easy.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/easy.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/easy.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/mprintf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/mprintf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/mprintf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/mprintf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/multi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/multi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/multi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/multi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/stdcheaders.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/stdcheaders.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/stdcheaders.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/stdcheaders.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/types.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/types.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/types.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curl/types.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curlx.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curlx.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curlx.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/curlx.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/dict.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easyif.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easyif.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easyif.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/easyif.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/escape.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/file.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/formdata.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ftp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getenv.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getenv.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getenv.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getenv.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/getinfo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/gtls.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostares.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostares.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostares.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostares.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostasyn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostasyn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostasyn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostasyn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip6.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip6.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip6.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostip6.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostsyn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostsyn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostsyn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostsyn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostthre.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostthre.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostthre.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/hostthre.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_chunks.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_digest.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_negotiate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/http_ntlm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/if2ip.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntoa_r.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntoa_r.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntoa_r.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntoa_r.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_ntop.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/inet_pton.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/krb4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ldap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/llist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/md5.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memdebug.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memory.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memory.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memory.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/memory.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/mprintf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/mprintf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/mprintf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/mprintf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multiif.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multiif.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multiif.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/multiif.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/netrc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/nwlib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/nwlib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/nwlib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/nwlib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/parsedate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/progress.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/security.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/security.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/security.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/security.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/select.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sendf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup_once.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup_once.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup_once.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/setup_once.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/share.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sockaddr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sockaddr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sockaddr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sockaddr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/socks.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/speedcheck.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/splay.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssh.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/sslgen.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/ssluse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strdup.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strequal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strerror.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtok.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/strtoofft.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/telnet.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/tftp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/timeval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/transfer.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/url.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/urldata.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/urldata.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/urldata.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/urldata.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/version.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/version.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/version.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmcurl/version.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/.NoDartCoverage b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/.NoDartCoverage similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/.NoDartCoverage rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/.NoDartCoverage diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/ascii.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/ascii.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/ascii.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/ascii.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/asciitab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/asciitab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/asciitab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/asciitab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/cm_expat_mangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/cm_expat_mangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/cm_expat_mangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/cm_expat_mangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatDllConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatDllConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatDllConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/expatDllConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/iasciitab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/iasciitab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/iasciitab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/iasciitab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/latin1tab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/latin1tab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/latin1tab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/latin1tab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/nametab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/nametab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/nametab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/nametab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/utf8tab.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/utf8tab.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/utf8tab.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/utf8tab.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlparse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlparse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlparse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlparse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmlrole.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_impl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_ns.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_ns.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_ns.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmexpat/xmltok_ns.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/COPYRIGHT b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/COPYRIGHT similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/COPYRIGHT rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/COPYRIGHT diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/append.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/append.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/append.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/append.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/block.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/block.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/block.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/block.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/basename.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/basename.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/basename.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/basename.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/compat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/compat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/compat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/compat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/dirname.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/dirname.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/dirname.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/dirname.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/fnmatch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/fnmatch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/fnmatch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/fnmatch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostbyname_r.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostbyname_r.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostbyname_r.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostbyname_r.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostname.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostname.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostname.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/gethostname.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/getservbyname_r.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/getservbyname_r.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/getservbyname_r.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/getservbyname_r.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/glob.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/glob.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/glob.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/glob.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/inet_aton.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/inet_aton.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/inet_aton.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/inet_aton.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/snprintf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/snprintf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/snprintf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/snprintf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strdup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strdup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strdup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strdup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcpy.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcpy.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcpy.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strlcpy.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strmode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strmode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strmode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strmode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strrstr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strrstr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strrstr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strrstr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strsep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strsep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strsep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/compat/strsep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/decode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/decode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/decode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/decode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/encode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/encode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/encode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/encode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/extract.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/extract.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/extract.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/extract.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/filesystem.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/handle.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/handle.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/handle.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/handle.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/internal.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/internal.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/internal.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/internal.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/libtar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/hash.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/hash.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/hash.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/hash.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/list.c.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/list.c.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/list.c.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/list.c.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/listhash.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/listhash.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/listhash.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/listhash/listhash.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/output.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/output.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/output.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/output.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/tar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/tar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/tar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/tar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/util.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/util.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/util.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/util.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/wrapper.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/wrapper.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/wrapper.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmtar/wrapper.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMake/TryCompileFromSource.cmake b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMake/TryCompileFromSource.cmake similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMake/TryCompileFromSource.cmake rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMake/TryCompileFromSource.cmake diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/XmlRpcCpp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/bool.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/bool.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/bool.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/bool.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/casprintf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/inline.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/inline.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/inline.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/inline.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/linklist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/linklist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/linklist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/linklist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/mallocvar.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/mallocvar.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/mallocvar.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/mallocvar.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/synch_client.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/synch_client.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/synch_client.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/synch_client.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/transport_config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/transport_config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/transport_config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/transport_config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/win32_pthreads.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/win32_pthreads.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/win32_pthreads.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/win32_pthreads.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_amconfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_amconfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_amconfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_amconfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_array.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_array.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_array.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_array.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_authcookie.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_authcookie.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_authcookie.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_authcookie.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_base64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_base64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_base64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_base64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_cgi.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_client_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_curl_transport.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_data.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_data.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_data.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_data.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_expat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_expat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_expat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_expat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_libxml2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_libxml2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_libxml2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_libxml2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_parse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_parse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_parse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_parse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_pthreads.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_pthreads.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_pthreads.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_pthreads.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_registry.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_registry.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_registry.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_registry.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_serialize.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_serialize.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_serialize.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_serialize.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss_int.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss_int.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss_int.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_server_abyss_int.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_struct.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_struct.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_struct.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_struct.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_strutil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_strutil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_strutil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_strutil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_support.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_support.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_support.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_support.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_transport.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_utf8.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_utf8.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_utf8.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_utf8.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_xmlparser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_xmlparser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_xmlparser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmxmlrpc/xmlrpc_xmlparser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/.NoDartCoverage b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/.NoDartCoverage similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/.NoDartCoverage rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/.NoDartCoverage diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/CMakeLists.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/CMakeLists.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/CMakeLists.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/CMakeLists.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/FAQ b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/FAQ similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/FAQ rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/FAQ diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/INDEX b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/INDEX similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/INDEX rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/INDEX diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README.Kitware.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README.Kitware.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README.Kitware.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/README.Kitware.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/adler32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/adler32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/adler32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/adler32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/cm_zlib_mangle.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/cm_zlib_mangle.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/cm_zlib_mangle.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/cm_zlib_mangle.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/compress.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/compress.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/compress.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/compress.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/crc32.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/deflate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/gzio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/gzio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/gzio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/gzio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffast.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffixed.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffixed.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffixed.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inffixed.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inflate.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/inftrees.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/trees.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/uncompr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/uncompr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/uncompr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/uncompr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zconf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zconf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zconf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zconf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.def b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.def similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.def rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.def diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.rc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.rc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.rc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlib.rc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlibDllConfig.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlibDllConfig.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlibDllConfig.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zlibDllConfig.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/Utilities/cmzlib/zutil.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/bootstrap b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/bootstrap similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/bootstrap rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/bootstrap diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake_uninstall.cmake.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake_uninstall.cmake.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake_uninstall.cmake.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/cmake_uninstall.cmake.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/doxygen.config b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/doxygen.config similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/doxygen.config rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/src/doxygen.config diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/cmake/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1996 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1996 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1996 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1996 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1997 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1997 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1997 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1997 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1998 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1998 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1998 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1998 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1999 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1999 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1999 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.1999 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2000 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2000 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2000 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2000 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2001 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2001 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2001 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2001 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2002 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2002 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2002 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2002 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2003 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2003 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2003 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2003 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2004 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2004 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2004 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2004 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2005 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2005 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2005 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2005 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2006 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2006 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2006 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2006 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2007 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2007 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2007 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/ChangeLog.2007 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/THANKS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/THANKS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/THANKS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/THANKS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/TODO b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/TODO similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/TODO rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/TODO diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/bootstrap b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/bootstrap similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/bootstrap rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/bootstrap diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config-h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config-h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config-h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config-h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/PLATFORMS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/PLATFORMS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/PLATFORMS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/PLATFORMS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/fdl.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/fdl.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/fdl.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/fdl.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/libtool.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/libtool.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/libtool.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/libtool.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.texi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.texi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.texi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.texi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/doc/notes.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/COPYING.LIB b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/COPYING.LIB similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/COPYING.LIB rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/COPYING.LIB diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz_.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz_.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz_.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/argz_.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config-h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config-h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config-h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config-h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/compile b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/compile similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/compile rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/compile diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/depcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/depcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/depcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/depcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/general.m4sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/general.m4sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/general.m4sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/general.m4sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/getopt.m4sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/getopt.m4sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/getopt.m4sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/getopt.m4sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.m4sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.m4sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.m4sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.m4sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mdate-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mdate-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mdate-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mdate-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mkstamp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mkstamp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mkstamp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/mkstamp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/texinfo.tex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/texinfo.tex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/texinfo.tex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/config/texinfo.tex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__alloc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__alloc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__alloc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__alloc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__dirent.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__dirent.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__dirent.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__dirent.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__glibc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__glibc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__glibc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__glibc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__private.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__private.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__private.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__private.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__strl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__strl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__strl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt__strl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_dlloader.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_dlloader.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_dlloader.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_dlloader.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_error.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_error.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_error.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_error.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_system.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_system.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_system.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/lt_system.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/slist.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/slist.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/slist.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/libltdl/slist.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dld_link.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dld_link.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dld_link.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dld_link.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dlopen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dlopen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dlopen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dlopen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dyld.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dyld.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dyld.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/dyld.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/load_add_on.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/load_add_on.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/load_add_on.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/load_add_on.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/loadlibrary.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/loadlibrary.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/loadlibrary.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/loadlibrary.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/preopen.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/preopen.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/preopen.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/preopen.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/shl_load.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/shl_load.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/shl_load.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/loaders/shl_load.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__alloc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__alloc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__alloc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__alloc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__dirent.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__dirent.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__dirent.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__dirent.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__strl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__strl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__strl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt__strl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_dlloader.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_dlloader.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_dlloader.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_dlloader.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_error.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_error.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_error.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/lt_error.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/ltdl.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/argz.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/argz.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/argz.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/argz.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/libtool.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/libtool.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/libtool.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/libtool.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltdl.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltdl.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltdl.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltdl.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltoptions.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltoptions.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltoptions.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltoptions.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltsugar.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltsugar.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltsugar.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltsugar.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/ltversion.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/lt~obsolete.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/lt~obsolete.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/lt~obsolete.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/m4/lt~obsolete.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/slist.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/slist.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/slist.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/slist.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/stamp-mk b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/stamp-mk similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/stamp-mk rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libltdl/stamp-mk diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.m4sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.m4sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.m4sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/libtoolize.m4sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/am-subdir.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/am-subdir.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/am-subdir.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/am-subdir.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/archive-in-archive.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/archive-in-archive.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/archive-in-archive.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/archive-in-archive.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-shared.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-shared.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-shared.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-shared.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-static.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-static.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-static.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-static.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-undef.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-undef.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-undef.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo-undef.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cdemo/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cmdline_wrap.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cmdline_wrap.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cmdline_wrap.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/cmdline_wrap.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/configure-iface.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/configure-iface.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/configure-iface.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/configure-iface.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/convenience.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/convenience.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/convenience.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/convenience.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ctor.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ctor.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ctor.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ctor.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/darwin.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/darwin.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/darwin.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/darwin.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.m4sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.m4sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.m4sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/defs.m4sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-deplibs.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-deplibs.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-deplibs.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-deplibs.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-hardcode.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-hardcode.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-hardcode.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-hardcode.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-inst.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-inst.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-inst.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-inst.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nofast.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nofast.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nofast.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nofast.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-noinst-link.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-noinst-link.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-noinst-link.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-noinst-link.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nopic.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nopic.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nopic.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-nopic.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-pic.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-pic.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-pic.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-pic.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-relink.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-relink.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-relink.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-relink.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-shared.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-shared.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-shared.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-shared.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-static.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-static.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-static.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-static.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-unst.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-unst.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-unst.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo-unst.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/dlmain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/dlmain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/dlmain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/dlmain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hell2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hello.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hello.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hello.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/hello.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/demo/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-inst.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-inst.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-inst.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-inst.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-nofast.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-nofast.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-nofast.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-nofast.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-relink.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-relink.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-relink.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-relink.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-shared.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-shared.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-shared.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-shared.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-static.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-static.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-static.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-static.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-unst.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-unst.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-unst.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo-unst.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l1/l1.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l2/l2.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l3/l3.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/l4/l4.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/sysdep.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/sysdep.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/sysdep.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/depdemo/sysdep.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/deplibs-ident.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/deplibs-ident.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/deplibs-ident.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/deplibs-ident.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/destdir.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/destdir.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/destdir.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/destdir.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_conv.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_conv.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_conv.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_conv.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_deps.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_deps.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_deps.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_deps.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_members.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_members.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_members.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/duplicate_members.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/early-libtool.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/early-libtool.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/early-libtool.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/early-libtool.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/execute-mode.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/execute-mode.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/execute-mode.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/execute-mode.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/export.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/export.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/export.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/export.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-shared.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-shared.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-shared.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-shared.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-static.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-static.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-static.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo-static.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/config-h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/config-h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/config-h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/config-h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/cprogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/cprogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/cprogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/cprogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fooc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fooc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fooc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fooc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof.f b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof.f similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof.f rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof.f diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof2.f b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof2.f similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof2.f rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof2.f diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof3.f b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof3.f similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof3.f rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/foof3.f diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fprogram.f b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fprogram.f similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fprogram.f rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/f77demo/fprogram.f diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fail.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fail.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fail.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fail.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-shared.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-shared.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-shared.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-shared.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-static.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-static.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-static.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo-static.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/config-h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/config-h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/config-h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/config-h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/cprogram.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/cprogram.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/cprogram.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/cprogram.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fooc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fooc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fooc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fooc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof2.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof2.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof2.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof2.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof3.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof3.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof3.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/foof3.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fprogram.f90 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fprogram.f90 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fprogram.f90 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/fcdemo/fprogram.f90 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/indirect_deps.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/indirect_deps.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/indirect_deps.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/indirect_deps.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/inherited_flags.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/inherited_flags.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/inherited_flags.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/inherited_flags.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/libtoolize.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/libtoolize.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/libtoolize.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/libtoolize.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-2.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-2.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-2.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-2.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order2.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order2.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order2.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link-order2.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/link.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/localization.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/localization.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/localization.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/localization.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dladvise.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dladvise.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dladvise.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dladvise.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dlexit.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dlexit.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dlexit.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/lt_dlexit.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ltdl-api.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ltdl-api.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ltdl-api.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/ltdl-api.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-dryrun.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-dryrun.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-dryrun.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-dryrun.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-inst.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-inst.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-inst.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-inst.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-shared.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-shared.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-shared.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-shared.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-static.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-static.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-static.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-static.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-unst.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-unst.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-unst.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo-unst.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/foo2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/mlib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/mlib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/mlib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/mlib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/sub.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/sub.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/sub.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo/sub.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/mdemo2/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/need_lib_prefix.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/need_lib_prefix.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/need_lib_prefix.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/need_lib_prefix.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nomode.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nomode.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nomode.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nomode.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nonrecursive.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nonrecursive.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nonrecursive.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/nonrecursive.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/objectlist.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/objectlist.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/objectlist.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/objectlist.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/old-m4-iface.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/old-m4-iface.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/old-m4-iface.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/old-m4-iface.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/package.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/package.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/package.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/package.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-inst.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-inst.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-inst.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-inst.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_dlmain.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_dlmain.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_dlmain.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_dlmain.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_foo2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell1.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell1.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell1.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell1.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell2.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell2.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell2.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hell2.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hello.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hello.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hello.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_hello.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/pdemo/longer_file_name_main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/quote.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/quote.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/quote.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/quote.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/recursive.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/recursive.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/recursive.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/recursive.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/runpath-in-lalib.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/runpath-in-lalib.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/runpath-in-lalib.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/runpath-in-lalib.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/search-path.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/search-path.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/search-path.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/search-path.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/sh.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/sh.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/sh.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/sh.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/shlibpath.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/shlibpath.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/shlibpath.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/shlibpath.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/standalone.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/standalone.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/standalone.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/standalone.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/static.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/static.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/static.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/static.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/stresstest.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/stresstest.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/stresstest.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/stresstest.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/subproject.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/subproject.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/subproject.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/subproject.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/suffix.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/suffix.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/suffix.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/suffix.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-conf.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-conf.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-conf.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-conf.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-exec.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-exec.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-exec.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-exec.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-make.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-make.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-make.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-make.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-shared.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-shared.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-shared.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-shared.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-static.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-static.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-static.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-static.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-undef.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-undef.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-undef.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo-undef.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/baz.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/conv.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/foo.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/main.cpp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/main.cpp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/main.cpp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagdemo/main.cpp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagtrace.test b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagtrace.test similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagtrace.test rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/tagtrace.test diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/template.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/template.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/template.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/template.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite.at b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite.at similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite.at rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/src/tests/testsuite.at diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/libtool/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-hooks.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-hooks.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-hooks.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-hooks.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-openmp.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-openmp.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-openmp.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-openmp.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-pthreads.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-pthreads.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-pthreads.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-pthreads.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-serial.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-serial.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-serial.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-serial.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-tbb.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-tbb.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-tbb.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc-tbb.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/gcc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/icc.bldconf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/icc.bldconf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/icc.bldconf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/parsec/icc.bldconf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ABOUT-NLS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ABOUT-NLS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ABOUT-NLS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ABOUT-NLS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/AUTHORS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/AUTHORS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/AUTHORS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/AUTHORS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Artistic.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Artistic.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Artistic.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Artistic.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/BSD.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/BSD.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/BSD.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/BSD.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/COPYING b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/COPYING similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/COPYING rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/COPYING diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_GPL-2.0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_GPL-2.0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_GPL-2.0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_GPL-2.0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_LGPL-2.0 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_LGPL-2.0 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_LGPL-2.0 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/GNU_LGPL-2.0 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/INSTALL b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/INSTALL similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/INSTALL rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/INSTALL diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.am b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.am similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.am rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.am diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Makefile.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.dj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.dj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.dj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.dj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.flat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.flat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.flat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/Makefile.flat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/libyasm-stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/libyasm-stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/libyasm-stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/dj/libyasm-stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/genmacro.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/genmacro.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/genmacro.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/genmacro.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmacro/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/genmodule.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/genmodule.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/genmodule.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/genmodule.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genmodule/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/genperf.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/genperf.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/genperf.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/genperf.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genperf/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/genstring.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/genstring.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/genstring.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/genstring.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genstring/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/genversion.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/genversion.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/genversion.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/genversion.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/genversion/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm-stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm-stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm-stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm-stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm/libyasm.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm/libyasm.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm/libyasm.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/libyasm/libyasm.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/modules/modules.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/modules/modules.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/modules/modules.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/modules/modules.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/re2c.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/re2c.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/re2c.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/re2c.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/re2c/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc/yasm.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/crt_secure_no_deprecate.vsprops b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/crt_secure_no_deprecate.vsprops similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/crt_secure_no_deprecate.vsprops rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/crt_secure_no_deprecate.vsprops diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/genmacro.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/genmacro.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/genmacro.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/genmacro.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmacro/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/genmodule.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/genmodule.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/genmodule.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/genmodule.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genmodule/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/genperf.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/genperf.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/genperf.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/genperf.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genperf/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/genstring.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/genstring.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/genstring.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/genstring.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genstring/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/genversion.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/genversion.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/genversion.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/genversion.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/genversion/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm-stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm-stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm-stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm-stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm/libyasm.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm/libyasm.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm/libyasm.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/libyasm/libyasm.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/modules/modules.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/modules/modules.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/modules/modules.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/modules/modules.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/re2c.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/re2c.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/re2c.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/re2c.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/re2c/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/readme.vc8.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/readme.vc8.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/readme.vc8.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/readme.vc8.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.rules b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.rules similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.rules rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.rules diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc8/yasm.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/config.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/config.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/config.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/config.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/crt_secure_no_deprecate.vsprops b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/crt_secure_no_deprecate.vsprops similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/crt_secure_no_deprecate.vsprops rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/crt_secure_no_deprecate.vsprops diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/genmacro.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/genmacro.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/genmacro.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/genmacro.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmacro/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/genmodule.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/genmodule.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/genmodule.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/genmodule.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genmodule/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/genperf.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/genperf.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/genperf.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/genperf.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genperf/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/genstring.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/genstring.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/genstring.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/genstring.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genstring/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/genversion.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/genversion.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/genversion.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/genversion.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/genversion/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm-stdint.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm-stdint.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm-stdint.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm-stdint.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm/libyasm.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm/libyasm.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm/libyasm.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/libyasm/libyasm.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/modules/modules.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/modules/modules.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/modules/modules.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/modules/modules.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/re2c.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/re2c.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/re2c.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/re2c.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/run.bat b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/run.bat similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/run.bat rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/re2c/run.bat diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/readme.vc9.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/readme.vc9.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/readme.vc9.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/readme.vc9.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/vc928.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/vc928.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/vc928.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/vc928.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.rules b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.rules similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.rules rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.rules diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.sln b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.sln similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.sln rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.sln diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.vcproj b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.vcproj similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.vcproj rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/Mkfiles/vc9/yasm.vcproj diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/NEWS b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/NEWS similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/NEWS rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/NEWS diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/aclocal.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/aclocal.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/aclocal.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/aclocal.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config.h.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config.h.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config.h.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config.h.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.guess b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.guess similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.guess rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.guess diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.rpath b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.rpath similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.rpath rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.rpath diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.sub b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.sub similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.sub rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/config.sub diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/depcomp b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/depcomp similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/depcomp rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/depcomp diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/install-sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/install-sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/install-sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/install-sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/ltmain.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/ltmain.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/ltmain.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/ltmain.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/missing b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/missing similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/missing rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/missing diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/mkinstalldirs b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/mkinstalldirs similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/mkinstalldirs rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/config/mkinstalldirs diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure.ac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure.ac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure.ac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/configure.ac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm-options.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/frontends/yasm/yasm.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/genstring.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/genstring.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/genstring.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/genstring.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/lc3bid.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/lc3bid.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/lc3bid.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/lc3bid.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/arch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/arch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/arch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/arch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/assocdat.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-align.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-align.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-align.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-align.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-data.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-data.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-data.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-data.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-incbin.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-incbin.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-incbin.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-incbin.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-org.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-org.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-org.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-org.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-reserve.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-reserve.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-reserve.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bc-reserve.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bitvect.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/bytecode.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/compat-queue.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/compat-queue.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/compat-queue.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/compat-queue.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/coretype.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/coretype.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/coretype.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/coretype.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/dbgfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/dbgfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/dbgfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/dbgfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/errwarn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/expr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/file.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/floatnum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/genmodule.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/genmodule.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/genmodule.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/genmodule.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/hamt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/insn.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/intnum.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/inttree.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/linemap.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/listfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/listfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/listfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/listfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/md5.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/mergesort.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/mergesort.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/mergesort.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/mergesort.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/module.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/objfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/objfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/objfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/objfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/parser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/parser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/parser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/parser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/phash.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/preproc.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/preproc.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/preproc.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/preproc.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/section.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strcasecmp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strcasecmp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strcasecmp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strcasecmp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strsep.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strsep.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strsep.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/strsep.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/symrec.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/1shl0.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/absloop-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/bitvect_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/bitvect_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/bitvect_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/bitvect_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/charconst64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/combpath_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/combpath_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/combpath_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/combpath_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/data-rawvalue.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/duplabel-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/emptydata.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/equ-expand.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/expr-wide-ident.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/externdef.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/floatnum_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/floatnum_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/floatnum_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/floatnum_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/incbin.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/jmpsize1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/leb128_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/leb128_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/leb128_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/leb128_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/libyasm_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/libyasm_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/libyasm_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/libyasm_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-align3.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular1-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular2-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-circular3-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-gvmat64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immexpand.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-immnoexpand.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-oldalign.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/opt-struc.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err1.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/reserve-err2.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/splitpath_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/splitpath_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/splitpath_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/splitpath_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/strucsize.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times-res.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/times0.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesover-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/timesunder.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/unary.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/uncstring_test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/uncstring_test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/uncstring_test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/uncstring_test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-mask.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/tests/value-samesym.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/valparam.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/value.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xmalloc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xmalloc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xmalloc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xmalloc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xstrdup.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xstrdup.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xstrdup.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/libyasm/xstrdup.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ax_create_stdint_h.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ax_create_stdint_h.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ax_create_stdint_h.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ax_create_stdint_h.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/codeset.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/codeset.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/codeset.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/codeset.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/gettext.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/gettext.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/gettext.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/gettext.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/glibc21.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/glibc21.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/glibc21.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/glibc21.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/iconv.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/iconv.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/iconv.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/iconv.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intdiv0.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intdiv0.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intdiv0.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intdiv0.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intmax.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intmax.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intmax.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/intmax.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes-pri.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes-pri.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes-pri.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes-pri.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes_h.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes_h.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes_h.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/inttypes_h.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/isc-posix.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/isc-posix.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/isc-posix.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/isc-posix.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lcmessage.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lcmessage.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lcmessage.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lcmessage.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-ld.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-ld.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-ld.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-ld.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-link.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-link.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-link.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-link.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-prefix.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-prefix.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-prefix.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/lib-prefix.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longdouble.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longdouble.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longdouble.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longdouble.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longlong.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longlong.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longlong.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/longlong.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/nls.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/nls.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/nls.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/nls.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/po.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/po.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/po.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/po.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/printf-posix.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/printf-posix.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/printf-posix.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/printf-posix.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/progtest.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/progtest.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/progtest.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/progtest.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pyrex.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pyrex.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pyrex.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pyrex.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pythonhead.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pythonhead.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pythonhead.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/pythonhead.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/signed.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/signed.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/signed.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/signed.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/size_max.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/size_max.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/size_max.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/size_max.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/stdint_h.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/stdint_h.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/stdint_h.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/stdint_h.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/uintmax_t.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/uintmax_t.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/uintmax_t.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/uintmax_t.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ulonglong.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ulonglong.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ulonglong.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/ulonglong.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wchar_t.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wchar_t.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wchar_t.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wchar_t.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wint_t.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wint_t.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wint_t.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/wint_t.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/xsize.m4 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/xsize.m4 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/xsize.m4 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/m4/xsize.m4 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/module.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/module.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/module.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/module.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3barch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bbc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bbc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bbc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bbc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bid.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bid.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bid.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/lc3bid.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-basic.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-br.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-ea-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b-mp22NC.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/lc3b/tests/lc3b_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/gen_x86_insn.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/gen_x86_insn.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/gen_x86_insn.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/gen_x86_insn.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addbyte.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/addrop.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/aes.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/amd200707.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/arithsmall.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avx.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/avxcc.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bittest.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/bswap64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/clmul.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cmpxchg.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cpubasic-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/cyrix.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/div-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-nonzero.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-over.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ea-warn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ebpindex.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/effaddr.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/enter.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/far64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farbasic.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/farithr.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fcmov.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fma.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/fwdequ64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/align32.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-farithr.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movdq32.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas-movsd.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/gas32-jmpcall.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/x86_gas32_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/x86_gas32_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/x86_gas32_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas32/x86_gas32_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/align64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-cbw.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-fp.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-inout.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-moreinsn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movabs.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movdq64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-movsxs.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-muldiv.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-prefix.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-retenter.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas-shift.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/gas64-jmpcall.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/riprel.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/x86_gas64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/x86_gas64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/x86_gas64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/gas64/x86_gas64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/genopcode.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/imm64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/iret.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-3.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-4.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-5.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmp64-6.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/jmpfar.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lds-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/loopadsz.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/lsahf.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64hi32.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mem64rip.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/mixcase.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq32.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/movdq64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/negequ.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64-err2.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/nomem64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/o64loop.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opersize.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/opsize-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/overflow.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/padlock.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pshift.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/push64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushf.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/pushnosize.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/rep.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ret.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/riprel2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ripseg.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segmov.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/segoff.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/shift.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd-2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/simd64-2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse-prefix.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse3.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse4.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-all.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-basic.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-cc.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/sse5-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssewidth.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/ssse3.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stos.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/str.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/strict.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/stringseg.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/svm.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/twobytemem.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vmx.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/vpermil2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/x86label.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xchg64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xmm64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/tests/xsave.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86arch.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86bc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86bc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86bc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86bc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86cpu.gperf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86cpu.gperf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86cpu.gperf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86cpu.gperf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86expr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86expr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86expr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86expr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86id.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86id.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86id.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86id.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86regtmod.gperf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86regtmod.gperf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86regtmod.gperf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/x86/x86regtmod.gperf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/yasm_arch.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/yasm_arch.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/yasm_arch.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/arch/yasm_arch.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-dbgfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-symline.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-symline.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-symline.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-symline.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-type.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-type.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-type.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv-type.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv8.txt b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv8.txt similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv8.txt rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/codeview/cv8.txt diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-aranges.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-aranges.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-aranges.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-aranges.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-info.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-info.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-info.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-info.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-line.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-line.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-line.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/dwarf2-line.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf2_pass32_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf2_pass32_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf2_pass32_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf2_pass32_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf2_pass64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf2_pass64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf2_pass64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf2_pass64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarf2_passwin64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarf2_passwin64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarf2_passwin64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarf2_passwin64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/null-dbgfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/null-dbgfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/null-dbgfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/null/null-dbgfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/stabs-dbgfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/stabs-dbgfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/stabs-dbgfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/stabs-dbgfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs-elf.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/stabs/tests/stabs_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/yasm_dbgfmts.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/yasm_dbgfmts.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/yasm_dbgfmts.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/dbgfmts/yasm_dbgfmts.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/nasm-listfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/nasm-listfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/nasm-listfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/listfmts/nasm/nasm-listfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/bin-objfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/bin-objfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/bin-objfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/bin-objfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/abs.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bigorg.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-farabs.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin-rip.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bin_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/bintest.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/float.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer-warn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/integer.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/levelop.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-align.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin-ssym.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin_multi_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin_multi_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin_multi_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/bin_multi_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop1-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-loop2-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/follows-notfound-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/initbss.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/ldlinux-sects.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect1.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect2.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect3.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect4.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/multisect5.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect1.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.map b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.map similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.map rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/nomultisect2.map diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop1-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-loop2-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/reserve.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/bin/tests/shr.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/coff-objfmt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/coff_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/coff_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/coff_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/coff_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftest.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/cofftimes.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/tests/x86id.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/win64-except.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/win64-except.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/win64-except.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/coff/win64-except.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/dbg-objfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/dbg-objfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/dbg-objfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/dbg/dbg-objfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-machine.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-machine.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-machine.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-machine.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-objfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-objfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-objfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-objfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-amd64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-amd64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-amd64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-amd64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-x86.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-x86.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-x86.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf-x86-x86.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/elf.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf-rip.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf_amd64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf_amd64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf_amd64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elf_amd64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/amd64/elfso64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/curpos.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-overdef.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf-x86id.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elf_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfabssect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfcond.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfequabs.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobal.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfglobext2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfmanysym.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc-ext.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfreloc.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfsectalign.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfso.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftest.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftimes.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elftypesize.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/elfvisibility.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_ssym.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas32/elf_gas32_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/crosssect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_curpos.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_reloc.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_ssym.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/gas64/elf_gas64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-forceident.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/elf/tests/nasm-sectname.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/macho-objfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/macho-objfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/macho-objfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/macho-objfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas-macho32.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas_macho32_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas_macho32_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas_macho32_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas32/gas_macho32_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas-macho64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas_macho64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas_macho64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas_macho64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/gas64/gas_macho64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho-reloc.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32-sect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/macho32_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm32/machotest.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho-reloc64-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/macho64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/macho/tests/nasm64/machotest64.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/rdf-objfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/rdf-objfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/rdf-objfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/rdf-objfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdf_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdf_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdf_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdf_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfabs.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfext.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdfseg2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdftest2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtlib.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/rdtmain.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/rdf/tests/testlib.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/export.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-curpos.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-overdef.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.masm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.masm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.masm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-safeseh.masm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32-segof.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win32/tests/win32test.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce1.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.masm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.masm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.masm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce3.masm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.masm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.masm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.masm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/sce4.masm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-curpos.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.masm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.masm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.masm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref.masm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.masm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.masm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.masm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64-dataref2.masm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/win64/tests/win64_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf-overdef.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdf_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdflong.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfother.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfprotect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfsect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/tests/xdfvirtual.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/xdf-objfmt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/xdf-objfmt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/xdf-objfmt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/xdf/xdf-objfmt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/yasm_objfmts.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/yasm_objfmts.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/yasm_objfmts.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/objfmts/yasm_objfmts.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-parser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-token.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-token.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-token.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/gas-token.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-comment.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-llabel.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas-set.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas_bin_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas_bin_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas_bin_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/gas_bin_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/rept-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptempty.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptlong.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptnested-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptsimple.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptwarn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/bin/reptzero.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/dataref-imm.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/datavis2.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/execsect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-fill.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-instlabel.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-line2-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-push.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas-semi.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gas_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/gassectalign.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/jmpcall.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/leb128.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/localcomm.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/reggroup.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/strzero.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/gas/tests/varinsn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parse.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parse.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parse.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parse.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-parser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-token.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-token.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-token.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/nasm-token.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop16.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/alignnop32.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/charconstmath.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/dy.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/endcomma.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equcolon.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/equlocal.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/hexconst.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/locallabel.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/long.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm-prefix.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/nasm_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/orphannowarn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/prevlocalwarn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/struczero.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/syntax-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/uscore.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/nasm_worphan_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/nasm_worphan_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/nasm_worphan_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/nasm_worphan_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/nasm/tests/worphan/orphanwarn.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/yasm_parsers.xml b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/yasm_parsers.xml similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/yasm_parsers.xml rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/parsers/yasm_parsers.xml diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/cpp-preproc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/cpp-preproc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/cpp-preproc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/cpp/cpp-preproc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genmacro.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genmacro.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genmacro.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genmacro.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genversion.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genversion.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genversion.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/genversion.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-eval.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-pp.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-preproc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-preproc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-preproc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm-preproc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasm.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/nasmlib.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/standard.mac b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/standard.mac similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/standard.mac rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/standard.mac diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/16args.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/ifcritical-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/longline.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-bigint.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-decimal.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp-nested.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/nasmpp_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.errwarn b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.errwarn similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.errwarn rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/noinclude-err.errwarn diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.asm b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.asm similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.asm rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.asm diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.hex b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.hex similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.hex rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/nasm/tests/orgsect.hex diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/raw-preproc.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/raw-preproc.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/raw-preproc.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/modules/preprocs/raw/raw-preproc.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/out_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/out_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/out_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/out_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/ChangeLog b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/ChangeLog similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/ChangeLog rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/ChangeLog diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makefile.in.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makefile.in.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makefile.in.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makefile.in.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makevars b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makevars similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makevars rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Makevars diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/POTFILES.in b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/POTFILES.in similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/POTFILES.in rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/POTFILES.in diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Rules-quot b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Rules-quot similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Rules-quot rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/Rules-quot diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/boldquot.sed b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/boldquot.sed similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/boldquot.sed rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/boldquot.sed diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@boldquot.header b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@boldquot.header similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@boldquot.header rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@boldquot.header diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@quot.header b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@quot.header similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@quot.header rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/en@quot.header diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/insert-header.sin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/insert-header.sin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/insert-header.sin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/insert-header.sin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/quot.sed b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/quot.sed similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/quot.sed rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/quot.sed diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/remove-potcdate.sin b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/remove-potcdate.sin similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/remove-potcdate.sin rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/remove-potcdate.sin diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/stamp-po b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/stamp-po similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/stamp-po rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/stamp-po diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/yasm.pot b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/yasm.pot similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/yasm.pot rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/po/yasm.pot diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/splint.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/splint.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/splint.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/splint.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/test_hd.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/test_hd.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/test_hd.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/test_hd.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/genperf.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/genperf.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/genperf.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/genperf.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/perfect.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/standard.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/standard.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/standard.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/genperf/standard.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/bytecode.pxi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/bytecode.pxi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/bytecode.pxi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/bytecode.pxi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/errwarn.pxi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/errwarn.pxi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/errwarn.pxi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/errwarn.pxi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/expr.pxi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/expr.pxi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/expr.pxi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/expr.pxi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/floatnum.pxi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/floatnum.pxi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/floatnum.pxi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/floatnum.pxi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/intnum.pxi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/intnum.pxi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/intnum.pxi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/intnum.pxi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/cparse.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/cparse.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/cparse.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/cparse.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/genpyx.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/genpyx.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/genpyx.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/genpyx.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/ir.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/ir.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/ir.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/ir.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/lexer.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/lexer.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/lexer.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/lexer.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/node.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/node.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/node.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/node.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/parse_core.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/parse_core.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/parse_core.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/parse_core.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/work_unit.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/work_unit.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/work_unit.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/work_unit.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/wrap_yasm.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/wrap_yasm.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/wrap_yasm.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/pyxelator/wrap_yasm.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/setup.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/setup.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/setup.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/setup.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/symrec.pxi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/symrec.pxi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/symrec.pxi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/symrec.pxi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/__init__.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/__init__.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/__init__.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/__init__.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/python_test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/python_test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/python_test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/python_test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_bytecode.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_bytecode.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_bytecode.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_bytecode.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_expr.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_expr.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_expr.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_expr.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_intnum.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_intnum.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_intnum.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_intnum.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_symrec.py b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_symrec.py similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_symrec.py rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/tests/test_symrec.py diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/value.pxi b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/value.pxi similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/value.pxi rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/value.pxi diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/yasm.pyx b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/yasm.pyx similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/yasm.pyx rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/python-yasm/yasm.pyx diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/CHANGELOG b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/CHANGELOG similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/CHANGELOG rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/CHANGELOG diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/Makefile.inc b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/Makefile.inc similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/Makefile.inc rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/Makefile.inc diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/NO_WARRANTY b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/NO_WARRANTY similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/NO_WARRANTY rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/NO_WARRANTY diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/actions.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/actions.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/actions.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/actions.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/basics.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/basics.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/basics.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/basics.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/bootstrap/scanner.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/bootstrap/scanner.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/bootstrap/scanner.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/bootstrap/scanner.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/code.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/code.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/code.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/code.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/dfa.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/loplas.ps.gz b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/loplas.ps.gz similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/loplas.ps.gz rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/loplas.ps.gz diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/sample.bib b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/sample.bib similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/sample.bib rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/doc/sample.bib diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/basemmap.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/basemmap.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/basemmap.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/basemmap.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/c.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/c.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/c.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/c.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cmmap.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cmmap.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cmmap.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cmmap.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cnokw.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cnokw.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cnokw.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cnokw.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cunroll.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cunroll.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cunroll.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/cunroll.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/modula.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/modula.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/modula.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/modula.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/repeater.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/repeater.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/repeater.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/repeater.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/README b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/README similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/README rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/README diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/rexx.l b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/rexx.l similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/rexx.l rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/rexx.l diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/scanio.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/scanio.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/scanio.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/rexx/scanio.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/sample.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/sample.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/sample.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/sample.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/simple.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/simple.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/simple.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/examples/simple.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/globals.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/globals.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/globals.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/globals.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/ins.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/ins.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/ins.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/ins.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/main.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/main.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/main.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/main.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/mbo_getopt.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parse.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parse.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parse.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parse.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/parser.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re2c.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re2c.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re2c.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/re2c.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.re b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.re similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.re rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/scanner.re diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/substr.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/token.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/token.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/token.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/token.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/translate.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/translate.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/translate.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/tools/re2c/translate.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/util.h b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/util.h similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/util.h rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/util.h diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86cpu.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86cpu.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86cpu.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86cpu.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_gas.gperf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_gas.gperf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_gas.gperf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_gas.gperf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_nasm.gperf b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_nasm.gperf similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_nasm.gperf rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insn_nasm.gperf diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insns.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insns.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insns.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86insns.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86regtmod.c b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86regtmod.c similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86regtmod.c rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/x86regtmod.c diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm.1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm.1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm.1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm.1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_arch.7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_arch.7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_arch.7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_arch.7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_dbgfmts.7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_dbgfmts.7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_dbgfmts.7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_dbgfmts.7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_objfmts.7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_objfmts.7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_objfmts.7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_objfmts.7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_parsers.7 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_parsers.7 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_parsers.7 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/src/yasm_parsers.7 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/pkgs/tools/yasm/version diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/test.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/test.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/test.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/test.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/baseline.log b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/baseline.log similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/baseline.log rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/baseline.log diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt.sh b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt.sh diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt_report.log b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt_report.log similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt_report.log rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/hpt_report.log diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/parameter.cfg b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/parameter.cfg similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/parameter.cfg rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/parameter.cfg diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select1 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select1 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select1 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select1 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select2 b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select2 similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select2 rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/toolkit/hpt/table_select2 diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/version b/src/deprecated/parsec/disk-image/parsec/parsec-benchmark/version similarity index 100% rename from src/parsec/disk-image/parsec/parsec-benchmark/version rename to src/deprecated/parsec/disk-image/parsec/parsec-benchmark/version diff --git a/src/parsec/disk-image/parsec/parsec-install.sh b/src/deprecated/parsec/disk-image/parsec/parsec-install.sh similarity index 100% rename from src/parsec/disk-image/parsec/parsec-install.sh rename to src/deprecated/parsec/disk-image/parsec/parsec-install.sh diff --git a/src/parsec/disk-image/parsec/parsec.json b/src/deprecated/parsec/disk-image/parsec/parsec.json similarity index 100% rename from src/parsec/disk-image/parsec/parsec.json rename to src/deprecated/parsec/disk-image/parsec/parsec.json diff --git a/src/parsec/disk-image/parsec/post-installation.sh b/src/deprecated/parsec/disk-image/parsec/post-installation.sh similarity index 100% rename from src/parsec/disk-image/parsec/post-installation.sh rename to src/deprecated/parsec/disk-image/parsec/post-installation.sh diff --git a/src/parsec/disk-image/parsec/runscript.sh b/src/deprecated/parsec/disk-image/parsec/runscript.sh similarity index 100% rename from src/parsec/disk-image/parsec/runscript.sh rename to src/deprecated/parsec/disk-image/parsec/runscript.sh diff --git a/src/npb/disk-image/shared/preseed.cfg b/src/deprecated/parsec/disk-image/shared/preseed.cfg old mode 100755 new mode 100644 similarity index 100% rename from src/npb/disk-image/shared/preseed.cfg rename to src/deprecated/parsec/disk-image/shared/preseed.cfg diff --git a/src/npb/disk-image/shared/serial-getty@.service b/src/deprecated/parsec/disk-image/shared/serial-getty@.service similarity index 100% rename from src/npb/disk-image/shared/serial-getty@.service rename to src/deprecated/parsec/disk-image/shared/serial-getty@.service diff --git a/src/simple/.gitignore b/src/deprecated/simple/.gitignore similarity index 100% rename from src/simple/.gitignore rename to src/deprecated/simple/.gitignore diff --git a/src/simple/Makefile b/src/deprecated/simple/Makefile similarity index 100% rename from src/simple/Makefile rename to src/deprecated/simple/Makefile diff --git a/src/simple/aarch64/futex_ldxr_stxr.c b/src/deprecated/simple/aarch64/futex_ldxr_stxr.c similarity index 100% rename from src/simple/aarch64/futex_ldxr_stxr.c rename to src/deprecated/simple/aarch64/futex_ldxr_stxr.c diff --git a/src/simple/aarch64/semihost_exit.S b/src/deprecated/simple/aarch64/semihost_exit.S similarity index 100% rename from src/simple/aarch64/semihost_exit.S rename to src/deprecated/simple/aarch64/semihost_exit.S diff --git a/src/simple/bootloader/aarch64.S b/src/deprecated/simple/bootloader/aarch64.S similarity index 100% rename from src/simple/bootloader/aarch64.S rename to src/deprecated/simple/bootloader/aarch64.S diff --git a/src/simple/chdir_print.c b/src/deprecated/simple/chdir_print.c similarity index 100% rename from src/simple/chdir_print.c rename to src/deprecated/simple/chdir_print.c diff --git a/src/simple/hello.c b/src/deprecated/simple/hello.c similarity index 100% rename from src/simple/hello.c rename to src/deprecated/simple/hello.c diff --git a/src/simple/hello_cpp.cpp b/src/deprecated/simple/hello_cpp.cpp similarity index 100% rename from src/simple/hello_cpp.cpp rename to src/deprecated/simple/hello_cpp.cpp diff --git a/src/simple/link.ld b/src/deprecated/simple/link.ld similarity index 100% rename from src/simple/link.ld rename to src/deprecated/simple/link.ld diff --git a/src/simple/m5_checkpoint.c b/src/deprecated/simple/m5_checkpoint.c similarity index 100% rename from src/simple/m5_checkpoint.c rename to src/deprecated/simple/m5_checkpoint.c diff --git a/src/simple/m5_exit.c b/src/deprecated/simple/m5_exit.c similarity index 100% rename from src/simple/m5_exit.c rename to src/deprecated/simple/m5_exit.c diff --git a/src/simple/m5_exit_addr.c b/src/deprecated/simple/m5_exit_addr.c similarity index 100% rename from src/simple/m5_exit_addr.c rename to src/deprecated/simple/m5_exit_addr.c diff --git a/src/simple/page_access_wrap.cpp b/src/deprecated/simple/page_access_wrap.cpp similarity index 100% rename from src/simple/page_access_wrap.cpp rename to src/deprecated/simple/page_access_wrap.cpp diff --git a/src/simple/pthread_atomic.cpp b/src/deprecated/simple/pthread_atomic.cpp similarity index 100% rename from src/simple/pthread_atomic.cpp rename to src/deprecated/simple/pthread_atomic.cpp diff --git a/src/simple/pthread_cond.cpp b/src/deprecated/simple/pthread_cond.cpp similarity index 100% rename from src/simple/pthread_cond.cpp rename to src/deprecated/simple/pthread_cond.cpp diff --git a/src/simple/pthread_create_para.cpp b/src/deprecated/simple/pthread_create_para.cpp similarity index 100% rename from src/simple/pthread_create_para.cpp rename to src/deprecated/simple/pthread_create_para.cpp diff --git a/src/simple/pthread_create_seq.cpp b/src/deprecated/simple/pthread_create_seq.cpp similarity index 100% rename from src/simple/pthread_create_seq.cpp rename to src/deprecated/simple/pthread_create_seq.cpp diff --git a/src/simple/pthread_mutex.cpp b/src/deprecated/simple/pthread_mutex.cpp similarity index 100% rename from src/simple/pthread_mutex.cpp rename to src/deprecated/simple/pthread_mutex.cpp diff --git a/src/simple/pthread_std_condition_variable.cpp b/src/deprecated/simple/pthread_std_condition_variable.cpp similarity index 100% rename from src/simple/pthread_std_condition_variable.cpp rename to src/deprecated/simple/pthread_std_condition_variable.cpp diff --git a/src/simple/pthread_std_mutex.cpp b/src/deprecated/simple/pthread_std_mutex.cpp similarity index 100% rename from src/simple/pthread_std_mutex.cpp rename to src/deprecated/simple/pthread_std_mutex.cpp diff --git a/src/simple/pthread_std_thread.cpp b/src/deprecated/simple/pthread_std_thread.cpp similarity index 100% rename from src/simple/pthread_std_thread.cpp rename to src/deprecated/simple/pthread_std_thread.cpp diff --git a/src/simple/stack_print.c b/src/deprecated/simple/stack_print.c similarity index 100% rename from src/simple/stack_print.c rename to src/deprecated/simple/stack_print.c diff --git a/src/simple/std_thread.cpp b/src/deprecated/simple/std_thread.cpp similarity index 100% rename from src/simple/std_thread.cpp rename to src/deprecated/simple/std_thread.cpp diff --git a/src/simple/x86_64/mwait.c b/src/deprecated/simple/x86_64/mwait.c similarity index 100% rename from src/simple/x86_64/mwait.c rename to src/deprecated/simple/x86_64/mwait.c diff --git a/src/asmtest/.gitignore b/src/examples/asmtest/.gitignore similarity index 100% rename from src/asmtest/.gitignore rename to src/examples/asmtest/.gitignore diff --git a/src/asmtest/LICENSE b/src/examples/asmtest/LICENSE similarity index 100% rename from src/asmtest/LICENSE rename to src/examples/asmtest/LICENSE diff --git a/src/asmtest/Makefile b/src/examples/asmtest/Makefile similarity index 100% rename from src/asmtest/Makefile rename to src/examples/asmtest/Makefile diff --git a/src/asmtest/README.md b/src/examples/asmtest/README.md similarity index 100% rename from src/asmtest/README.md rename to src/examples/asmtest/README.md diff --git a/src/asmtest/benchmarks/Makefile b/src/examples/asmtest/benchmarks/Makefile similarity index 100% rename from src/asmtest/benchmarks/Makefile rename to src/examples/asmtest/benchmarks/Makefile diff --git a/src/asmtest/benchmarks/common/crt.S b/src/examples/asmtest/benchmarks/common/crt.S similarity index 100% rename from src/asmtest/benchmarks/common/crt.S rename to src/examples/asmtest/benchmarks/common/crt.S diff --git a/src/asmtest/benchmarks/common/encoding.h b/src/examples/asmtest/benchmarks/common/encoding.h similarity index 100% rename from src/asmtest/benchmarks/common/encoding.h rename to src/examples/asmtest/benchmarks/common/encoding.h diff --git a/src/asmtest/benchmarks/common/syscalls.c b/src/examples/asmtest/benchmarks/common/syscalls.c similarity index 100% rename from src/asmtest/benchmarks/common/syscalls.c rename to src/examples/asmtest/benchmarks/common/syscalls.c diff --git a/src/asmtest/benchmarks/common/test.ld b/src/examples/asmtest/benchmarks/common/test.ld similarity index 100% rename from src/asmtest/benchmarks/common/test.ld rename to src/examples/asmtest/benchmarks/common/test.ld diff --git a/src/asmtest/benchmarks/common/util.h b/src/examples/asmtest/benchmarks/common/util.h similarity index 100% rename from src/asmtest/benchmarks/common/util.h rename to src/examples/asmtest/benchmarks/common/util.h diff --git a/src/asmtest/benchmarks/dhrystone/CHANGELOG.md b/src/examples/asmtest/benchmarks/dhrystone/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/dhrystone/CHANGELOG.md rename to src/examples/asmtest/benchmarks/dhrystone/CHANGELOG.md diff --git a/src/asmtest/benchmarks/dhrystone/README.md b/src/examples/asmtest/benchmarks/dhrystone/README.md similarity index 100% rename from src/asmtest/benchmarks/dhrystone/README.md rename to src/examples/asmtest/benchmarks/dhrystone/README.md diff --git a/src/asmtest/benchmarks/dhrystone/dhrystone.c b/src/examples/asmtest/benchmarks/dhrystone/dhrystone.c similarity index 100% rename from src/asmtest/benchmarks/dhrystone/dhrystone.c rename to src/examples/asmtest/benchmarks/dhrystone/dhrystone.c diff --git a/src/asmtest/benchmarks/dhrystone/dhrystone.h b/src/examples/asmtest/benchmarks/dhrystone/dhrystone.h similarity index 100% rename from src/asmtest/benchmarks/dhrystone/dhrystone.h rename to src/examples/asmtest/benchmarks/dhrystone/dhrystone.h diff --git a/src/asmtest/benchmarks/dhrystone/dhrystone_main.c b/src/examples/asmtest/benchmarks/dhrystone/dhrystone_main.c similarity index 100% rename from src/asmtest/benchmarks/dhrystone/dhrystone_main.c rename to src/examples/asmtest/benchmarks/dhrystone/dhrystone_main.c diff --git a/src/asmtest/benchmarks/median/CHANGELOG.md b/src/examples/asmtest/benchmarks/median/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/median/CHANGELOG.md rename to src/examples/asmtest/benchmarks/median/CHANGELOG.md diff --git a/src/asmtest/benchmarks/median/README.md b/src/examples/asmtest/benchmarks/median/README.md similarity index 100% rename from src/asmtest/benchmarks/median/README.md rename to src/examples/asmtest/benchmarks/median/README.md diff --git a/src/asmtest/benchmarks/median/dataset1.h b/src/examples/asmtest/benchmarks/median/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/median/dataset1.h rename to src/examples/asmtest/benchmarks/median/dataset1.h diff --git a/src/asmtest/benchmarks/median/median.c b/src/examples/asmtest/benchmarks/median/median.c similarity index 100% rename from src/asmtest/benchmarks/median/median.c rename to src/examples/asmtest/benchmarks/median/median.c diff --git a/src/asmtest/benchmarks/median/median.h b/src/examples/asmtest/benchmarks/median/median.h similarity index 100% rename from src/asmtest/benchmarks/median/median.h rename to src/examples/asmtest/benchmarks/median/median.h diff --git a/src/asmtest/benchmarks/median/median_gendata.pl b/src/examples/asmtest/benchmarks/median/median_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/median/median_gendata.pl rename to src/examples/asmtest/benchmarks/median/median_gendata.pl diff --git a/src/asmtest/benchmarks/median/median_main.c b/src/examples/asmtest/benchmarks/median/median_main.c similarity index 100% rename from src/asmtest/benchmarks/median/median_main.c rename to src/examples/asmtest/benchmarks/median/median_main.c diff --git a/src/asmtest/benchmarks/memcpy/CHANGELOG.md b/src/examples/asmtest/benchmarks/memcpy/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/memcpy/CHANGELOG.md rename to src/examples/asmtest/benchmarks/memcpy/CHANGELOG.md diff --git a/src/asmtest/benchmarks/memcpy/README.md b/src/examples/asmtest/benchmarks/memcpy/README.md similarity index 100% rename from src/asmtest/benchmarks/memcpy/README.md rename to src/examples/asmtest/benchmarks/memcpy/README.md diff --git a/src/asmtest/benchmarks/memcpy/dataset1.h b/src/examples/asmtest/benchmarks/memcpy/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/memcpy/dataset1.h rename to src/examples/asmtest/benchmarks/memcpy/dataset1.h diff --git a/src/asmtest/benchmarks/memcpy/memcpy_gendata.pl b/src/examples/asmtest/benchmarks/memcpy/memcpy_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/memcpy/memcpy_gendata.pl rename to src/examples/asmtest/benchmarks/memcpy/memcpy_gendata.pl diff --git a/src/asmtest/benchmarks/memcpy/memcpy_main.c b/src/examples/asmtest/benchmarks/memcpy/memcpy_main.c similarity index 100% rename from src/asmtest/benchmarks/memcpy/memcpy_main.c rename to src/examples/asmtest/benchmarks/memcpy/memcpy_main.c diff --git a/src/asmtest/benchmarks/mm/CHANGELOG.md b/src/examples/asmtest/benchmarks/mm/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/mm/CHANGELOG.md rename to src/examples/asmtest/benchmarks/mm/CHANGELOG.md diff --git a/src/asmtest/benchmarks/mm/README.md b/src/examples/asmtest/benchmarks/mm/README.md similarity index 100% rename from src/asmtest/benchmarks/mm/README.md rename to src/examples/asmtest/benchmarks/mm/README.md diff --git a/src/asmtest/benchmarks/mm/common.h b/src/examples/asmtest/benchmarks/mm/common.h similarity index 100% rename from src/asmtest/benchmarks/mm/common.h rename to src/examples/asmtest/benchmarks/mm/common.h diff --git a/src/asmtest/benchmarks/mm/gen.scala b/src/examples/asmtest/benchmarks/mm/gen.scala similarity index 100% rename from src/asmtest/benchmarks/mm/gen.scala rename to src/examples/asmtest/benchmarks/mm/gen.scala diff --git a/src/asmtest/benchmarks/mm/mm.c b/src/examples/asmtest/benchmarks/mm/mm.c similarity index 100% rename from src/asmtest/benchmarks/mm/mm.c rename to src/examples/asmtest/benchmarks/mm/mm.c diff --git a/src/asmtest/benchmarks/mm/mm_main.c b/src/examples/asmtest/benchmarks/mm/mm_main.c similarity index 100% rename from src/asmtest/benchmarks/mm/mm_main.c rename to src/examples/asmtest/benchmarks/mm/mm_main.c diff --git a/src/asmtest/benchmarks/mm/rb.h b/src/examples/asmtest/benchmarks/mm/rb.h similarity index 100% rename from src/asmtest/benchmarks/mm/rb.h rename to src/examples/asmtest/benchmarks/mm/rb.h diff --git a/src/asmtest/benchmarks/mt-matmul/dataset.h b/src/examples/asmtest/benchmarks/mt-matmul/dataset.h similarity index 100% rename from src/asmtest/benchmarks/mt-matmul/dataset.h rename to src/examples/asmtest/benchmarks/mt-matmul/dataset.h diff --git a/src/asmtest/benchmarks/mt-matmul/matmul.c b/src/examples/asmtest/benchmarks/mt-matmul/matmul.c similarity index 100% rename from src/asmtest/benchmarks/mt-matmul/matmul.c rename to src/examples/asmtest/benchmarks/mt-matmul/matmul.c diff --git a/src/asmtest/benchmarks/mt-matmul/matmul_gendata.pl b/src/examples/asmtest/benchmarks/mt-matmul/matmul_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/mt-matmul/matmul_gendata.pl rename to src/examples/asmtest/benchmarks/mt-matmul/matmul_gendata.pl diff --git a/src/asmtest/benchmarks/mt-matmul/mt-matmul.c b/src/examples/asmtest/benchmarks/mt-matmul/mt-matmul.c similarity index 100% rename from src/asmtest/benchmarks/mt-matmul/mt-matmul.c rename to src/examples/asmtest/benchmarks/mt-matmul/mt-matmul.c diff --git a/src/asmtest/benchmarks/mt-memcpy/dataset1.h b/src/examples/asmtest/benchmarks/mt-memcpy/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/mt-memcpy/dataset1.h rename to src/examples/asmtest/benchmarks/mt-memcpy/dataset1.h diff --git a/src/asmtest/benchmarks/mt-memcpy/memcpy_gendata.pl b/src/examples/asmtest/benchmarks/mt-memcpy/memcpy_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/mt-memcpy/memcpy_gendata.pl rename to src/examples/asmtest/benchmarks/mt-memcpy/memcpy_gendata.pl diff --git a/src/asmtest/benchmarks/mt-memcpy/mt-memcpy.c b/src/examples/asmtest/benchmarks/mt-memcpy/mt-memcpy.c similarity index 100% rename from src/asmtest/benchmarks/mt-memcpy/mt-memcpy.c rename to src/examples/asmtest/benchmarks/mt-memcpy/mt-memcpy.c diff --git a/src/asmtest/benchmarks/mt-vvadd/dataset.h b/src/examples/asmtest/benchmarks/mt-vvadd/dataset.h similarity index 100% rename from src/asmtest/benchmarks/mt-vvadd/dataset.h rename to src/examples/asmtest/benchmarks/mt-vvadd/dataset.h diff --git a/src/asmtest/benchmarks/mt-vvadd/mt-vvadd.c b/src/examples/asmtest/benchmarks/mt-vvadd/mt-vvadd.c similarity index 100% rename from src/asmtest/benchmarks/mt-vvadd/mt-vvadd.c rename to src/examples/asmtest/benchmarks/mt-vvadd/mt-vvadd.c diff --git a/src/asmtest/benchmarks/mt-vvadd/vvadd.c b/src/examples/asmtest/benchmarks/mt-vvadd/vvadd.c similarity index 100% rename from src/asmtest/benchmarks/mt-vvadd/vvadd.c rename to src/examples/asmtest/benchmarks/mt-vvadd/vvadd.c diff --git a/src/asmtest/benchmarks/mt-vvadd/vvadd_gendata.pl b/src/examples/asmtest/benchmarks/mt-vvadd/vvadd_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/mt-vvadd/vvadd_gendata.pl rename to src/examples/asmtest/benchmarks/mt-vvadd/vvadd_gendata.pl diff --git a/src/asmtest/benchmarks/multiply/CHANGELOG.md b/src/examples/asmtest/benchmarks/multiply/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/multiply/CHANGELOG.md rename to src/examples/asmtest/benchmarks/multiply/CHANGELOG.md diff --git a/src/asmtest/benchmarks/multiply/README.md b/src/examples/asmtest/benchmarks/multiply/README.md similarity index 100% rename from src/asmtest/benchmarks/multiply/README.md rename to src/examples/asmtest/benchmarks/multiply/README.md diff --git a/src/asmtest/benchmarks/multiply/dataset1.h b/src/examples/asmtest/benchmarks/multiply/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/multiply/dataset1.h rename to src/examples/asmtest/benchmarks/multiply/dataset1.h diff --git a/src/asmtest/benchmarks/multiply/multiply.c b/src/examples/asmtest/benchmarks/multiply/multiply.c similarity index 100% rename from src/asmtest/benchmarks/multiply/multiply.c rename to src/examples/asmtest/benchmarks/multiply/multiply.c diff --git a/src/asmtest/benchmarks/multiply/multiply.h b/src/examples/asmtest/benchmarks/multiply/multiply.h similarity index 100% rename from src/asmtest/benchmarks/multiply/multiply.h rename to src/examples/asmtest/benchmarks/multiply/multiply.h diff --git a/src/asmtest/benchmarks/multiply/multiply_gendata.pl b/src/examples/asmtest/benchmarks/multiply/multiply_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/multiply/multiply_gendata.pl rename to src/examples/asmtest/benchmarks/multiply/multiply_gendata.pl diff --git a/src/asmtest/benchmarks/multiply/multiply_main.c b/src/examples/asmtest/benchmarks/multiply/multiply_main.c similarity index 100% rename from src/asmtest/benchmarks/multiply/multiply_main.c rename to src/examples/asmtest/benchmarks/multiply/multiply_main.c diff --git a/src/asmtest/benchmarks/pmp/CHANGELOG.md b/src/examples/asmtest/benchmarks/pmp/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/pmp/CHANGELOG.md rename to src/examples/asmtest/benchmarks/pmp/CHANGELOG.md diff --git a/src/asmtest/benchmarks/pmp/README.md b/src/examples/asmtest/benchmarks/pmp/README.md similarity index 100% rename from src/asmtest/benchmarks/pmp/README.md rename to src/examples/asmtest/benchmarks/pmp/README.md diff --git a/src/asmtest/benchmarks/pmp/pmp.c b/src/examples/asmtest/benchmarks/pmp/pmp.c similarity index 100% rename from src/asmtest/benchmarks/pmp/pmp.c rename to src/examples/asmtest/benchmarks/pmp/pmp.c diff --git a/src/asmtest/benchmarks/qsort/CHANGELOG.md b/src/examples/asmtest/benchmarks/qsort/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/qsort/CHANGELOG.md rename to src/examples/asmtest/benchmarks/qsort/CHANGELOG.md diff --git a/src/asmtest/benchmarks/qsort/README.md b/src/examples/asmtest/benchmarks/qsort/README.md similarity index 100% rename from src/asmtest/benchmarks/qsort/README.md rename to src/examples/asmtest/benchmarks/qsort/README.md diff --git a/src/asmtest/benchmarks/qsort/dataset1.h b/src/examples/asmtest/benchmarks/qsort/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/qsort/dataset1.h rename to src/examples/asmtest/benchmarks/qsort/dataset1.h diff --git a/src/asmtest/benchmarks/qsort/qsort_gendata.pl b/src/examples/asmtest/benchmarks/qsort/qsort_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/qsort/qsort_gendata.pl rename to src/examples/asmtest/benchmarks/qsort/qsort_gendata.pl diff --git a/src/asmtest/benchmarks/qsort/qsort_main.c b/src/examples/asmtest/benchmarks/qsort/qsort_main.c similarity index 100% rename from src/asmtest/benchmarks/qsort/qsort_main.c rename to src/examples/asmtest/benchmarks/qsort/qsort_main.c diff --git a/src/asmtest/benchmarks/readme.txt b/src/examples/asmtest/benchmarks/readme.txt similarity index 100% rename from src/asmtest/benchmarks/readme.txt rename to src/examples/asmtest/benchmarks/readme.txt diff --git a/src/asmtest/benchmarks/rsort/CHANGELOG.md b/src/examples/asmtest/benchmarks/rsort/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/rsort/CHANGELOG.md rename to src/examples/asmtest/benchmarks/rsort/CHANGELOG.md diff --git a/src/asmtest/benchmarks/rsort/README.md b/src/examples/asmtest/benchmarks/rsort/README.md similarity index 100% rename from src/asmtest/benchmarks/rsort/README.md rename to src/examples/asmtest/benchmarks/rsort/README.md diff --git a/src/asmtest/benchmarks/rsort/dataset1.h b/src/examples/asmtest/benchmarks/rsort/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/rsort/dataset1.h rename to src/examples/asmtest/benchmarks/rsort/dataset1.h diff --git a/src/asmtest/benchmarks/rsort/rsort.c b/src/examples/asmtest/benchmarks/rsort/rsort.c similarity index 100% rename from src/asmtest/benchmarks/rsort/rsort.c rename to src/examples/asmtest/benchmarks/rsort/rsort.c diff --git a/src/asmtest/benchmarks/spmv/CHANGELOG.md b/src/examples/asmtest/benchmarks/spmv/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/spmv/CHANGELOG.md rename to src/examples/asmtest/benchmarks/spmv/CHANGELOG.md diff --git a/src/asmtest/benchmarks/spmv/README.md b/src/examples/asmtest/benchmarks/spmv/README.md similarity index 100% rename from src/asmtest/benchmarks/spmv/README.md rename to src/examples/asmtest/benchmarks/spmv/README.md diff --git a/src/asmtest/benchmarks/spmv/dataset1.h b/src/examples/asmtest/benchmarks/spmv/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/spmv/dataset1.h rename to src/examples/asmtest/benchmarks/spmv/dataset1.h diff --git a/src/asmtest/benchmarks/spmv/spmv_gendata.scala b/src/examples/asmtest/benchmarks/spmv/spmv_gendata.scala similarity index 100% rename from src/asmtest/benchmarks/spmv/spmv_gendata.scala rename to src/examples/asmtest/benchmarks/spmv/spmv_gendata.scala diff --git a/src/asmtest/benchmarks/spmv/spmv_main.c b/src/examples/asmtest/benchmarks/spmv/spmv_main.c similarity index 100% rename from src/asmtest/benchmarks/spmv/spmv_main.c rename to src/examples/asmtest/benchmarks/spmv/spmv_main.c diff --git a/src/asmtest/benchmarks/towers/CHANGELOG.md b/src/examples/asmtest/benchmarks/towers/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/towers/CHANGELOG.md rename to src/examples/asmtest/benchmarks/towers/CHANGELOG.md diff --git a/src/asmtest/benchmarks/towers/README.md b/src/examples/asmtest/benchmarks/towers/README.md similarity index 100% rename from src/asmtest/benchmarks/towers/README.md rename to src/examples/asmtest/benchmarks/towers/README.md diff --git a/src/asmtest/benchmarks/towers/towers_main.c b/src/examples/asmtest/benchmarks/towers/towers_main.c similarity index 100% rename from src/asmtest/benchmarks/towers/towers_main.c rename to src/examples/asmtest/benchmarks/towers/towers_main.c diff --git a/src/asmtest/benchmarks/vec-daxpy/dataset1.h b/src/examples/asmtest/benchmarks/vec-daxpy/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/vec-daxpy/dataset1.h rename to src/examples/asmtest/benchmarks/vec-daxpy/dataset1.h diff --git a/src/asmtest/benchmarks/vec-daxpy/daxpy_gendata.pl b/src/examples/asmtest/benchmarks/vec-daxpy/daxpy_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/vec-daxpy/daxpy_gendata.pl rename to src/examples/asmtest/benchmarks/vec-daxpy/daxpy_gendata.pl diff --git a/src/asmtest/benchmarks/vec-daxpy/vec-daxpy.S b/src/examples/asmtest/benchmarks/vec-daxpy/vec-daxpy.S similarity index 100% rename from src/asmtest/benchmarks/vec-daxpy/vec-daxpy.S rename to src/examples/asmtest/benchmarks/vec-daxpy/vec-daxpy.S diff --git a/src/asmtest/benchmarks/vec-daxpy/vec-daxpy_main.c b/src/examples/asmtest/benchmarks/vec-daxpy/vec-daxpy_main.c similarity index 100% rename from src/asmtest/benchmarks/vec-daxpy/vec-daxpy_main.c rename to src/examples/asmtest/benchmarks/vec-daxpy/vec-daxpy_main.c diff --git a/src/asmtest/benchmarks/vec-memcpy/dataset1.h b/src/examples/asmtest/benchmarks/vec-memcpy/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/vec-memcpy/dataset1.h rename to src/examples/asmtest/benchmarks/vec-memcpy/dataset1.h diff --git a/src/asmtest/benchmarks/vec-memcpy/memcpy_gendata.pl b/src/examples/asmtest/benchmarks/vec-memcpy/memcpy_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/vec-memcpy/memcpy_gendata.pl rename to src/examples/asmtest/benchmarks/vec-memcpy/memcpy_gendata.pl diff --git a/src/asmtest/benchmarks/vec-memcpy/vec-memcpy.S b/src/examples/asmtest/benchmarks/vec-memcpy/vec-memcpy.S similarity index 100% rename from src/asmtest/benchmarks/vec-memcpy/vec-memcpy.S rename to src/examples/asmtest/benchmarks/vec-memcpy/vec-memcpy.S diff --git a/src/asmtest/benchmarks/vec-memcpy/vec-memcpy_main.c b/src/examples/asmtest/benchmarks/vec-memcpy/vec-memcpy_main.c similarity index 100% rename from src/asmtest/benchmarks/vec-memcpy/vec-memcpy_main.c rename to src/examples/asmtest/benchmarks/vec-memcpy/vec-memcpy_main.c diff --git a/src/asmtest/benchmarks/vec-sgemm/dataset1.h b/src/examples/asmtest/benchmarks/vec-sgemm/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/vec-sgemm/dataset1.h rename to src/examples/asmtest/benchmarks/vec-sgemm/dataset1.h diff --git a/src/asmtest/benchmarks/vec-sgemm/sgemm_gendata.pl b/src/examples/asmtest/benchmarks/vec-sgemm/sgemm_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/vec-sgemm/sgemm_gendata.pl rename to src/examples/asmtest/benchmarks/vec-sgemm/sgemm_gendata.pl diff --git a/src/asmtest/benchmarks/vec-sgemm/vec-sgemm.S b/src/examples/asmtest/benchmarks/vec-sgemm/vec-sgemm.S similarity index 100% rename from src/asmtest/benchmarks/vec-sgemm/vec-sgemm.S rename to src/examples/asmtest/benchmarks/vec-sgemm/vec-sgemm.S diff --git a/src/asmtest/benchmarks/vec-sgemm/vec-sgemm_main.c b/src/examples/asmtest/benchmarks/vec-sgemm/vec-sgemm_main.c similarity index 100% rename from src/asmtest/benchmarks/vec-sgemm/vec-sgemm_main.c rename to src/examples/asmtest/benchmarks/vec-sgemm/vec-sgemm_main.c diff --git a/src/asmtest/benchmarks/vec-strcmp/vec-strcmp.S b/src/examples/asmtest/benchmarks/vec-strcmp/vec-strcmp.S similarity index 100% rename from src/asmtest/benchmarks/vec-strcmp/vec-strcmp.S rename to src/examples/asmtest/benchmarks/vec-strcmp/vec-strcmp.S diff --git a/src/asmtest/benchmarks/vec-strcmp/vec-strcmp_main.c b/src/examples/asmtest/benchmarks/vec-strcmp/vec-strcmp_main.c similarity index 100% rename from src/asmtest/benchmarks/vec-strcmp/vec-strcmp_main.c rename to src/examples/asmtest/benchmarks/vec-strcmp/vec-strcmp_main.c diff --git a/src/asmtest/benchmarks/vvadd/CHANGELOG.md b/src/examples/asmtest/benchmarks/vvadd/CHANGELOG.md similarity index 100% rename from src/asmtest/benchmarks/vvadd/CHANGELOG.md rename to src/examples/asmtest/benchmarks/vvadd/CHANGELOG.md diff --git a/src/asmtest/benchmarks/vvadd/README.md b/src/examples/asmtest/benchmarks/vvadd/README.md similarity index 100% rename from src/asmtest/benchmarks/vvadd/README.md rename to src/examples/asmtest/benchmarks/vvadd/README.md diff --git a/src/asmtest/benchmarks/vvadd/dataset1-large.h b/src/examples/asmtest/benchmarks/vvadd/dataset1-large.h similarity index 100% rename from src/asmtest/benchmarks/vvadd/dataset1-large.h rename to src/examples/asmtest/benchmarks/vvadd/dataset1-large.h diff --git a/src/asmtest/benchmarks/vvadd/dataset1.h b/src/examples/asmtest/benchmarks/vvadd/dataset1.h similarity index 100% rename from src/asmtest/benchmarks/vvadd/dataset1.h rename to src/examples/asmtest/benchmarks/vvadd/dataset1.h diff --git a/src/asmtest/benchmarks/vvadd/vvadd_gendata.pl b/src/examples/asmtest/benchmarks/vvadd/vvadd_gendata.pl similarity index 100% rename from src/asmtest/benchmarks/vvadd/vvadd_gendata.pl rename to src/examples/asmtest/benchmarks/vvadd/vvadd_gendata.pl diff --git a/src/asmtest/benchmarks/vvadd/vvadd_main.c b/src/examples/asmtest/benchmarks/vvadd/vvadd_main.c similarity index 100% rename from src/asmtest/benchmarks/vvadd/vvadd_main.c rename to src/examples/asmtest/benchmarks/vvadd/vvadd_main.c diff --git a/src/asmtest/debug/Makefile b/src/examples/asmtest/debug/Makefile similarity index 100% rename from src/asmtest/debug/Makefile rename to src/examples/asmtest/debug/Makefile diff --git a/src/asmtest/debug/README.md b/src/examples/asmtest/debug/README.md similarity index 100% rename from src/asmtest/debug/README.md rename to src/examples/asmtest/debug/README.md diff --git a/src/asmtest/debug/bin/README.md b/src/examples/asmtest/debug/bin/README.md similarity index 100% rename from src/asmtest/debug/bin/README.md rename to src/examples/asmtest/debug/bin/README.md diff --git a/src/asmtest/debug/bin/RTOSDemo32.axf b/src/examples/asmtest/debug/bin/RTOSDemo32.axf similarity index 100% rename from src/asmtest/debug/bin/RTOSDemo32.axf rename to src/examples/asmtest/debug/bin/RTOSDemo32.axf diff --git a/src/asmtest/debug/bin/RTOSDemo64.axf b/src/examples/asmtest/debug/bin/RTOSDemo64.axf similarity index 100% rename from src/asmtest/debug/bin/RTOSDemo64.axf rename to src/examples/asmtest/debug/bin/RTOSDemo64.axf diff --git a/src/asmtest/debug/excluded.yaml.example b/src/examples/asmtest/debug/excluded.yaml.example similarity index 100% rename from src/asmtest/debug/excluded.yaml.example rename to src/examples/asmtest/debug/excluded.yaml.example diff --git a/src/asmtest/debug/gdbserver.py b/src/examples/asmtest/debug/gdbserver.py similarity index 100% rename from src/asmtest/debug/gdbserver.py rename to src/examples/asmtest/debug/gdbserver.py diff --git a/src/asmtest/debug/hifive1_excludes.yaml b/src/examples/asmtest/debug/hifive1_excludes.yaml similarity index 100% rename from src/asmtest/debug/hifive1_excludes.yaml rename to src/examples/asmtest/debug/hifive1_excludes.yaml diff --git a/src/asmtest/debug/openocd.py b/src/examples/asmtest/debug/openocd.py similarity index 100% rename from src/asmtest/debug/openocd.py rename to src/examples/asmtest/debug/openocd.py diff --git a/src/asmtest/debug/programs/checksum.c b/src/examples/asmtest/debug/programs/checksum.c similarity index 100% rename from src/asmtest/debug/programs/checksum.c rename to src/examples/asmtest/debug/programs/checksum.c diff --git a/src/asmtest/debug/programs/counting_loop.c b/src/examples/asmtest/debug/programs/counting_loop.c similarity index 100% rename from src/asmtest/debug/programs/counting_loop.c rename to src/examples/asmtest/debug/programs/counting_loop.c diff --git a/src/asmtest/debug/programs/debug.c b/src/examples/asmtest/debug/programs/debug.c similarity index 100% rename from src/asmtest/debug/programs/debug.c rename to src/examples/asmtest/debug/programs/debug.c diff --git a/src/asmtest/debug/programs/ebreak.c b/src/examples/asmtest/debug/programs/ebreak.c similarity index 100% rename from src/asmtest/debug/programs/ebreak.c rename to src/examples/asmtest/debug/programs/ebreak.c diff --git a/src/asmtest/debug/programs/encoding.h b/src/examples/asmtest/debug/programs/encoding.h similarity index 100% rename from src/asmtest/debug/programs/encoding.h rename to src/examples/asmtest/debug/programs/encoding.h diff --git a/src/asmtest/debug/programs/entry.S b/src/examples/asmtest/debug/programs/entry.S similarity index 100% rename from src/asmtest/debug/programs/entry.S rename to src/examples/asmtest/debug/programs/entry.S diff --git a/src/asmtest/debug/programs/infinite_loop.S b/src/examples/asmtest/debug/programs/infinite_loop.S similarity index 100% rename from src/asmtest/debug/programs/infinite_loop.S rename to src/examples/asmtest/debug/programs/infinite_loop.S diff --git a/src/asmtest/debug/programs/init.c b/src/examples/asmtest/debug/programs/init.c similarity index 100% rename from src/asmtest/debug/programs/init.c rename to src/examples/asmtest/debug/programs/init.c diff --git a/src/asmtest/debug/programs/init.h b/src/examples/asmtest/debug/programs/init.h similarity index 100% rename from src/asmtest/debug/programs/init.h rename to src/examples/asmtest/debug/programs/init.h diff --git a/src/asmtest/debug/programs/interrupt.c b/src/examples/asmtest/debug/programs/interrupt.c similarity index 100% rename from src/asmtest/debug/programs/interrupt.c rename to src/examples/asmtest/debug/programs/interrupt.c diff --git a/src/asmtest/debug/programs/mprv.S b/src/examples/asmtest/debug/programs/mprv.S similarity index 100% rename from src/asmtest/debug/programs/mprv.S rename to src/examples/asmtest/debug/programs/mprv.S diff --git a/src/asmtest/debug/programs/multicore.c b/src/examples/asmtest/debug/programs/multicore.c similarity index 100% rename from src/asmtest/debug/programs/multicore.c rename to src/examples/asmtest/debug/programs/multicore.c diff --git a/src/asmtest/debug/programs/priv.S b/src/examples/asmtest/debug/programs/priv.S similarity index 100% rename from src/asmtest/debug/programs/priv.S rename to src/examples/asmtest/debug/programs/priv.S diff --git a/src/asmtest/debug/programs/regs.S b/src/examples/asmtest/debug/programs/regs.S similarity index 100% rename from src/asmtest/debug/programs/regs.S rename to src/examples/asmtest/debug/programs/regs.S diff --git a/src/asmtest/debug/programs/run_halt_timing.S b/src/examples/asmtest/debug/programs/run_halt_timing.S similarity index 100% rename from src/asmtest/debug/programs/run_halt_timing.S rename to src/examples/asmtest/debug/programs/run_halt_timing.S diff --git a/src/asmtest/debug/programs/semihosting.c b/src/examples/asmtest/debug/programs/semihosting.c similarity index 100% rename from src/asmtest/debug/programs/semihosting.c rename to src/examples/asmtest/debug/programs/semihosting.c diff --git a/src/asmtest/debug/programs/semihosting.h b/src/examples/asmtest/debug/programs/semihosting.h similarity index 100% rename from src/asmtest/debug/programs/semihosting.h rename to src/examples/asmtest/debug/programs/semihosting.h diff --git a/src/asmtest/debug/programs/step.S b/src/examples/asmtest/debug/programs/step.S similarity index 100% rename from src/asmtest/debug/programs/step.S rename to src/examples/asmtest/debug/programs/step.S diff --git a/src/asmtest/debug/programs/tiny-malloc.c b/src/examples/asmtest/debug/programs/tiny-malloc.c similarity index 100% rename from src/asmtest/debug/programs/tiny-malloc.c rename to src/examples/asmtest/debug/programs/tiny-malloc.c diff --git a/src/asmtest/debug/programs/translate.c b/src/examples/asmtest/debug/programs/translate.c similarity index 100% rename from src/asmtest/debug/programs/translate.c rename to src/examples/asmtest/debug/programs/translate.c diff --git a/src/asmtest/debug/programs/trigger.S b/src/examples/asmtest/debug/programs/trigger.S similarity index 100% rename from src/asmtest/debug/programs/trigger.S rename to src/examples/asmtest/debug/programs/trigger.S diff --git a/src/asmtest/debug/programs/vectors.S b/src/examples/asmtest/debug/programs/vectors.S similarity index 100% rename from src/asmtest/debug/programs/vectors.S rename to src/examples/asmtest/debug/programs/vectors.S diff --git a/src/asmtest/debug/pylint.rc b/src/examples/asmtest/debug/pylint.rc similarity index 100% rename from src/asmtest/debug/pylint.rc rename to src/examples/asmtest/debug/pylint.rc diff --git a/src/asmtest/debug/rbb_daisychain.py b/src/examples/asmtest/debug/rbb_daisychain.py similarity index 100% rename from src/asmtest/debug/rbb_daisychain.py rename to src/examples/asmtest/debug/rbb_daisychain.py diff --git a/src/asmtest/debug/requirements.txt b/src/examples/asmtest/debug/requirements.txt similarity index 100% rename from src/asmtest/debug/requirements.txt rename to src/examples/asmtest/debug/requirements.txt diff --git a/src/asmtest/debug/targets.py b/src/examples/asmtest/debug/targets.py similarity index 100% rename from src/asmtest/debug/targets.py rename to src/examples/asmtest/debug/targets.py diff --git a/src/asmtest/debug/targets/RISC-V/spike-1.cfg b/src/examples/asmtest/debug/targets/RISC-V/spike-1.cfg similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike-1.cfg rename to src/examples/asmtest/debug/targets/RISC-V/spike-1.cfg diff --git a/src/asmtest/debug/targets/RISC-V/spike-2-hwthread.cfg b/src/examples/asmtest/debug/targets/RISC-V/spike-2-hwthread.cfg similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike-2-hwthread.cfg rename to src/examples/asmtest/debug/targets/RISC-V/spike-2-hwthread.cfg diff --git a/src/asmtest/debug/targets/RISC-V/spike-2.cfg b/src/examples/asmtest/debug/targets/RISC-V/spike-2.cfg similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike-2.cfg rename to src/examples/asmtest/debug/targets/RISC-V/spike-2.cfg diff --git a/src/asmtest/debug/targets/RISC-V/spike-multi.cfg b/src/examples/asmtest/debug/targets/RISC-V/spike-multi.cfg similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike-multi.cfg rename to src/examples/asmtest/debug/targets/RISC-V/spike-multi.cfg diff --git a/src/asmtest/debug/targets/RISC-V/spike-multi.py b/src/examples/asmtest/debug/targets/RISC-V/spike-multi.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike-multi.py rename to src/examples/asmtest/debug/targets/RISC-V/spike-multi.py diff --git a/src/asmtest/debug/targets/RISC-V/spike32-2-hwthread.py b/src/examples/asmtest/debug/targets/RISC-V/spike32-2-hwthread.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike32-2-hwthread.py rename to src/examples/asmtest/debug/targets/RISC-V/spike32-2-hwthread.py diff --git a/src/asmtest/debug/targets/RISC-V/spike32-2.py b/src/examples/asmtest/debug/targets/RISC-V/spike32-2.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike32-2.py rename to src/examples/asmtest/debug/targets/RISC-V/spike32-2.py diff --git a/src/asmtest/debug/targets/RISC-V/spike32.lds b/src/examples/asmtest/debug/targets/RISC-V/spike32.lds similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike32.lds rename to src/examples/asmtest/debug/targets/RISC-V/spike32.lds diff --git a/src/asmtest/debug/targets/RISC-V/spike32.py b/src/examples/asmtest/debug/targets/RISC-V/spike32.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike32.py rename to src/examples/asmtest/debug/targets/RISC-V/spike32.py diff --git a/src/asmtest/debug/targets/RISC-V/spike64-2-hwthread.py b/src/examples/asmtest/debug/targets/RISC-V/spike64-2-hwthread.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike64-2-hwthread.py rename to src/examples/asmtest/debug/targets/RISC-V/spike64-2-hwthread.py diff --git a/src/asmtest/debug/targets/RISC-V/spike64-2-rtos.py b/src/examples/asmtest/debug/targets/RISC-V/spike64-2-rtos.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike64-2-rtos.py rename to src/examples/asmtest/debug/targets/RISC-V/spike64-2-rtos.py diff --git a/src/asmtest/debug/targets/RISC-V/spike64-2.py b/src/examples/asmtest/debug/targets/RISC-V/spike64-2.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike64-2.py rename to src/examples/asmtest/debug/targets/RISC-V/spike64-2.py diff --git a/src/asmtest/debug/targets/RISC-V/spike64.lds b/src/examples/asmtest/debug/targets/RISC-V/spike64.lds similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike64.lds rename to src/examples/asmtest/debug/targets/RISC-V/spike64.lds diff --git a/src/asmtest/debug/targets/RISC-V/spike64.py b/src/examples/asmtest/debug/targets/RISC-V/spike64.py similarity index 100% rename from src/asmtest/debug/targets/RISC-V/spike64.py rename to src/examples/asmtest/debug/targets/RISC-V/spike64.py diff --git a/src/asmtest/debug/targets/SiFive/Freedom/E300.py b/src/examples/asmtest/debug/targets/SiFive/Freedom/E300.py similarity index 100% rename from src/asmtest/debug/targets/SiFive/Freedom/E300.py rename to src/examples/asmtest/debug/targets/SiFive/Freedom/E300.py diff --git a/src/asmtest/debug/targets/SiFive/Freedom/Freedom.cfg b/src/examples/asmtest/debug/targets/SiFive/Freedom/Freedom.cfg similarity index 100% rename from src/asmtest/debug/targets/SiFive/Freedom/Freedom.cfg rename to src/examples/asmtest/debug/targets/SiFive/Freedom/Freedom.cfg diff --git a/src/asmtest/debug/targets/SiFive/Freedom/Freedom.lds b/src/examples/asmtest/debug/targets/SiFive/Freedom/Freedom.lds similarity index 100% rename from src/asmtest/debug/targets/SiFive/Freedom/Freedom.lds rename to src/examples/asmtest/debug/targets/SiFive/Freedom/Freedom.lds diff --git a/src/asmtest/debug/targets/SiFive/Freedom/U500.py b/src/examples/asmtest/debug/targets/SiFive/Freedom/U500.py similarity index 100% rename from src/asmtest/debug/targets/SiFive/Freedom/U500.py rename to src/examples/asmtest/debug/targets/SiFive/Freedom/U500.py diff --git a/src/asmtest/debug/targets/SiFive/Freedom/U500Sim.py b/src/examples/asmtest/debug/targets/SiFive/Freedom/U500Sim.py similarity index 100% rename from src/asmtest/debug/targets/SiFive/Freedom/U500Sim.py rename to src/examples/asmtest/debug/targets/SiFive/Freedom/U500Sim.py diff --git a/src/asmtest/debug/targets/SiFive/HiFive1-flash.lds b/src/examples/asmtest/debug/targets/SiFive/HiFive1-flash.lds similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFive1-flash.lds rename to src/examples/asmtest/debug/targets/SiFive/HiFive1-flash.lds diff --git a/src/asmtest/debug/targets/SiFive/HiFive1-flash.py b/src/examples/asmtest/debug/targets/SiFive/HiFive1-flash.py similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFive1-flash.py rename to src/examples/asmtest/debug/targets/SiFive/HiFive1-flash.py diff --git a/src/asmtest/debug/targets/SiFive/HiFive1.cfg b/src/examples/asmtest/debug/targets/SiFive/HiFive1.cfg similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFive1.cfg rename to src/examples/asmtest/debug/targets/SiFive/HiFive1.cfg diff --git a/src/asmtest/debug/targets/SiFive/HiFive1.lds b/src/examples/asmtest/debug/targets/SiFive/HiFive1.lds similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFive1.lds rename to src/examples/asmtest/debug/targets/SiFive/HiFive1.lds diff --git a/src/asmtest/debug/targets/SiFive/HiFive1.py b/src/examples/asmtest/debug/targets/SiFive/HiFive1.py similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFive1.py rename to src/examples/asmtest/debug/targets/SiFive/HiFive1.py diff --git a/src/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.lds b/src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.lds similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.lds rename to src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.lds diff --git a/src/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.py b/src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.py similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.py rename to src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed-flash.py diff --git a/src/asmtest/debug/targets/SiFive/HiFiveUnleashed.cfg b/src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed.cfg similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFiveUnleashed.cfg rename to src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed.cfg diff --git a/src/asmtest/debug/targets/SiFive/HiFiveUnleashed.lds b/src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed.lds similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFiveUnleashed.lds rename to src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed.lds diff --git a/src/asmtest/debug/targets/SiFive/HiFiveUnleashed.py b/src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed.py similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFiveUnleashed.py rename to src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed.py diff --git a/src/asmtest/debug/targets/SiFive/HiFiveUnleashed_setup.bin b/src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed_setup.bin similarity index 100% rename from src/asmtest/debug/targets/SiFive/HiFiveUnleashed_setup.bin rename to src/examples/asmtest/debug/targets/SiFive/HiFiveUnleashed_setup.bin diff --git a/src/asmtest/debug/testlib.py b/src/examples/asmtest/debug/testlib.py similarity index 100% rename from src/asmtest/debug/testlib.py rename to src/examples/asmtest/debug/testlib.py diff --git a/src/asmtest/env/LICENSE b/src/examples/asmtest/env/LICENSE similarity index 100% rename from src/asmtest/env/LICENSE rename to src/examples/asmtest/env/LICENSE diff --git a/src/asmtest/env/encoding.h b/src/examples/asmtest/env/encoding.h similarity index 100% rename from src/asmtest/env/encoding.h rename to src/examples/asmtest/env/encoding.h diff --git a/src/asmtest/env/p/link.ld b/src/examples/asmtest/env/p/link.ld similarity index 100% rename from src/asmtest/env/p/link.ld rename to src/examples/asmtest/env/p/link.ld diff --git a/src/asmtest/env/p/riscv_test.h b/src/examples/asmtest/env/p/riscv_test.h similarity index 100% rename from src/asmtest/env/p/riscv_test.h rename to src/examples/asmtest/env/p/riscv_test.h diff --git a/src/asmtest/env/pm/link.ld b/src/examples/asmtest/env/pm/link.ld similarity index 100% rename from src/asmtest/env/pm/link.ld rename to src/examples/asmtest/env/pm/link.ld diff --git a/src/asmtest/env/pm/riscv_test.h b/src/examples/asmtest/env/pm/riscv_test.h similarity index 100% rename from src/asmtest/env/pm/riscv_test.h rename to src/examples/asmtest/env/pm/riscv_test.h diff --git a/src/asmtest/env/ps/link.ld b/src/examples/asmtest/env/ps/link.ld similarity index 100% rename from src/asmtest/env/ps/link.ld rename to src/examples/asmtest/env/ps/link.ld diff --git a/src/asmtest/env/ps/riscv_test.h b/src/examples/asmtest/env/ps/riscv_test.h similarity index 100% rename from src/asmtest/env/ps/riscv_test.h rename to src/examples/asmtest/env/ps/riscv_test.h diff --git a/src/asmtest/env/pt/link.ld b/src/examples/asmtest/env/pt/link.ld similarity index 100% rename from src/asmtest/env/pt/link.ld rename to src/examples/asmtest/env/pt/link.ld diff --git a/src/asmtest/env/pt/riscv_test.h b/src/examples/asmtest/env/pt/riscv_test.h similarity index 100% rename from src/asmtest/env/pt/riscv_test.h rename to src/examples/asmtest/env/pt/riscv_test.h diff --git a/src/asmtest/env/v/entry.S b/src/examples/asmtest/env/v/entry.S similarity index 100% rename from src/asmtest/env/v/entry.S rename to src/examples/asmtest/env/v/entry.S diff --git a/src/asmtest/env/v/link.ld b/src/examples/asmtest/env/v/link.ld similarity index 100% rename from src/asmtest/env/v/link.ld rename to src/examples/asmtest/env/v/link.ld diff --git a/src/asmtest/env/v/riscv_test.h b/src/examples/asmtest/env/v/riscv_test.h similarity index 100% rename from src/asmtest/env/v/riscv_test.h rename to src/examples/asmtest/env/v/riscv_test.h diff --git a/src/asmtest/env/v/string.c b/src/examples/asmtest/env/v/string.c similarity index 100% rename from src/asmtest/env/v/string.c rename to src/examples/asmtest/env/v/string.c diff --git a/src/asmtest/env/v/vm.c b/src/examples/asmtest/env/v/vm.c similarity index 100% rename from src/asmtest/env/v/vm.c rename to src/examples/asmtest/env/v/vm.c diff --git a/src/asmtest/isa/.gitignore b/src/examples/asmtest/isa/.gitignore similarity index 100% rename from src/asmtest/isa/.gitignore rename to src/examples/asmtest/isa/.gitignore diff --git a/src/asmtest/isa/Makefile b/src/examples/asmtest/isa/Makefile similarity index 100% rename from src/asmtest/isa/Makefile rename to src/examples/asmtest/isa/Makefile diff --git a/src/asmtest/isa/macros/mt/test_macros_mt.h b/src/examples/asmtest/isa/macros/mt/test_macros_mt.h similarity index 100% rename from src/asmtest/isa/macros/mt/test_macros_mt.h rename to src/examples/asmtest/isa/macros/mt/test_macros_mt.h diff --git a/src/asmtest/isa/macros/mt/test_macros_mt_ecall.h b/src/examples/asmtest/isa/macros/mt/test_macros_mt_ecall.h similarity index 100% rename from src/asmtest/isa/macros/mt/test_macros_mt_ecall.h rename to src/examples/asmtest/isa/macros/mt/test_macros_mt_ecall.h diff --git a/src/asmtest/isa/macros/scalar/test_macros.h b/src/examples/asmtest/isa/macros/scalar/test_macros.h similarity index 100% rename from src/asmtest/isa/macros/scalar/test_macros.h rename to src/examples/asmtest/isa/macros/scalar/test_macros.h diff --git a/src/asmtest/isa/rv32mi/Makefrag b/src/examples/asmtest/isa/rv32mi/Makefrag similarity index 100% rename from src/asmtest/isa/rv32mi/Makefrag rename to src/examples/asmtest/isa/rv32mi/Makefrag diff --git a/src/asmtest/isa/rv32mi/breakpoint.S b/src/examples/asmtest/isa/rv32mi/breakpoint.S similarity index 100% rename from src/asmtest/isa/rv32mi/breakpoint.S rename to src/examples/asmtest/isa/rv32mi/breakpoint.S diff --git a/src/asmtest/isa/rv32mi/csr.S b/src/examples/asmtest/isa/rv32mi/csr.S similarity index 100% rename from src/asmtest/isa/rv32mi/csr.S rename to src/examples/asmtest/isa/rv32mi/csr.S diff --git a/src/asmtest/isa/rv32mi/illegal.S b/src/examples/asmtest/isa/rv32mi/illegal.S similarity index 100% rename from src/asmtest/isa/rv32mi/illegal.S rename to src/examples/asmtest/isa/rv32mi/illegal.S diff --git a/src/asmtest/isa/rv32mi/lh-misaligned.S b/src/examples/asmtest/isa/rv32mi/lh-misaligned.S similarity index 100% rename from src/asmtest/isa/rv32mi/lh-misaligned.S rename to src/examples/asmtest/isa/rv32mi/lh-misaligned.S diff --git a/src/asmtest/isa/rv32mi/lw-misaligned.S b/src/examples/asmtest/isa/rv32mi/lw-misaligned.S similarity index 100% rename from src/asmtest/isa/rv32mi/lw-misaligned.S rename to src/examples/asmtest/isa/rv32mi/lw-misaligned.S diff --git a/src/asmtest/isa/rv32mi/ma_addr.S b/src/examples/asmtest/isa/rv32mi/ma_addr.S similarity index 100% rename from src/asmtest/isa/rv32mi/ma_addr.S rename to src/examples/asmtest/isa/rv32mi/ma_addr.S diff --git a/src/asmtest/isa/rv32mi/ma_fetch.S b/src/examples/asmtest/isa/rv32mi/ma_fetch.S similarity index 100% rename from src/asmtest/isa/rv32mi/ma_fetch.S rename to src/examples/asmtest/isa/rv32mi/ma_fetch.S diff --git a/src/asmtest/isa/rv32mi/mcsr.S b/src/examples/asmtest/isa/rv32mi/mcsr.S similarity index 100% rename from src/asmtest/isa/rv32mi/mcsr.S rename to src/examples/asmtest/isa/rv32mi/mcsr.S diff --git a/src/asmtest/isa/rv32mi/sbreak.S b/src/examples/asmtest/isa/rv32mi/sbreak.S similarity index 100% rename from src/asmtest/isa/rv32mi/sbreak.S rename to src/examples/asmtest/isa/rv32mi/sbreak.S diff --git a/src/asmtest/isa/rv32mi/scall.S b/src/examples/asmtest/isa/rv32mi/scall.S similarity index 100% rename from src/asmtest/isa/rv32mi/scall.S rename to src/examples/asmtest/isa/rv32mi/scall.S diff --git a/src/asmtest/isa/rv32mi/sh-misaligned.S b/src/examples/asmtest/isa/rv32mi/sh-misaligned.S similarity index 100% rename from src/asmtest/isa/rv32mi/sh-misaligned.S rename to src/examples/asmtest/isa/rv32mi/sh-misaligned.S diff --git a/src/asmtest/isa/rv32mi/shamt.S b/src/examples/asmtest/isa/rv32mi/shamt.S similarity index 100% rename from src/asmtest/isa/rv32mi/shamt.S rename to src/examples/asmtest/isa/rv32mi/shamt.S diff --git a/src/asmtest/isa/rv32mi/sw-misaligned.S b/src/examples/asmtest/isa/rv32mi/sw-misaligned.S similarity index 100% rename from src/asmtest/isa/rv32mi/sw-misaligned.S rename to src/examples/asmtest/isa/rv32mi/sw-misaligned.S diff --git a/src/asmtest/isa/rv32mi/zicntr.S b/src/examples/asmtest/isa/rv32mi/zicntr.S similarity index 100% rename from src/asmtest/isa/rv32mi/zicntr.S rename to src/examples/asmtest/isa/rv32mi/zicntr.S diff --git a/src/asmtest/isa/rv32samt/Makefrag b/src/examples/asmtest/isa/rv32samt/Makefrag similarity index 100% rename from src/asmtest/isa/rv32samt/Makefrag rename to src/examples/asmtest/isa/rv32samt/Makefrag diff --git a/src/asmtest/isa/rv32samt/sysclone_w.S b/src/examples/asmtest/isa/rv32samt/sysclone_w.S similarity index 100% rename from src/asmtest/isa/rv32samt/sysclone_w.S rename to src/examples/asmtest/isa/rv32samt/sysclone_w.S diff --git a/src/asmtest/isa/rv32samt/sysfutex1_w.S b/src/examples/asmtest/isa/rv32samt/sysfutex1_w.S similarity index 100% rename from src/asmtest/isa/rv32samt/sysfutex1_w.S rename to src/examples/asmtest/isa/rv32samt/sysfutex1_w.S diff --git a/src/asmtest/isa/rv32samt/sysfutex2_w.S b/src/examples/asmtest/isa/rv32samt/sysfutex2_w.S similarity index 100% rename from src/asmtest/isa/rv32samt/sysfutex2_w.S rename to src/examples/asmtest/isa/rv32samt/sysfutex2_w.S diff --git a/src/asmtest/isa/rv32samt/sysfutex3_w.S b/src/examples/asmtest/isa/rv32samt/sysfutex3_w.S similarity index 100% rename from src/asmtest/isa/rv32samt/sysfutex3_w.S rename to src/examples/asmtest/isa/rv32samt/sysfutex3_w.S diff --git a/src/asmtest/isa/rv32samt/sysfutex_w.S b/src/examples/asmtest/isa/rv32samt/sysfutex_w.S similarity index 100% rename from src/asmtest/isa/rv32samt/sysfutex_w.S rename to src/examples/asmtest/isa/rv32samt/sysfutex_w.S diff --git a/src/asmtest/isa/rv32si/Makefrag b/src/examples/asmtest/isa/rv32si/Makefrag similarity index 100% rename from src/asmtest/isa/rv32si/Makefrag rename to src/examples/asmtest/isa/rv32si/Makefrag diff --git a/src/asmtest/isa/rv32si/csr.S b/src/examples/asmtest/isa/rv32si/csr.S similarity index 100% rename from src/asmtest/isa/rv32si/csr.S rename to src/examples/asmtest/isa/rv32si/csr.S diff --git a/src/asmtest/isa/rv32si/dirty.S b/src/examples/asmtest/isa/rv32si/dirty.S similarity index 100% rename from src/asmtest/isa/rv32si/dirty.S rename to src/examples/asmtest/isa/rv32si/dirty.S diff --git a/src/asmtest/isa/rv32si/ma_fetch.S b/src/examples/asmtest/isa/rv32si/ma_fetch.S similarity index 100% rename from src/asmtest/isa/rv32si/ma_fetch.S rename to src/examples/asmtest/isa/rv32si/ma_fetch.S diff --git a/src/asmtest/isa/rv32si/sbreak.S b/src/examples/asmtest/isa/rv32si/sbreak.S similarity index 100% rename from src/asmtest/isa/rv32si/sbreak.S rename to src/examples/asmtest/isa/rv32si/sbreak.S diff --git a/src/asmtest/isa/rv32si/scall.S b/src/examples/asmtest/isa/rv32si/scall.S similarity index 100% rename from src/asmtest/isa/rv32si/scall.S rename to src/examples/asmtest/isa/rv32si/scall.S diff --git a/src/asmtest/isa/rv32si/wfi.S b/src/examples/asmtest/isa/rv32si/wfi.S similarity index 100% rename from src/asmtest/isa/rv32si/wfi.S rename to src/examples/asmtest/isa/rv32si/wfi.S diff --git a/src/asmtest/isa/rv32ua/Makefrag b/src/examples/asmtest/isa/rv32ua/Makefrag similarity index 100% rename from src/asmtest/isa/rv32ua/Makefrag rename to src/examples/asmtest/isa/rv32ua/Makefrag diff --git a/src/asmtest/isa/rv32ua/amoadd_w.S b/src/examples/asmtest/isa/rv32ua/amoadd_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amoadd_w.S rename to src/examples/asmtest/isa/rv32ua/amoadd_w.S diff --git a/src/asmtest/isa/rv32ua/amoand_w.S b/src/examples/asmtest/isa/rv32ua/amoand_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amoand_w.S rename to src/examples/asmtest/isa/rv32ua/amoand_w.S diff --git a/src/asmtest/isa/rv32ua/amomax_w.S b/src/examples/asmtest/isa/rv32ua/amomax_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amomax_w.S rename to src/examples/asmtest/isa/rv32ua/amomax_w.S diff --git a/src/asmtest/isa/rv32ua/amomaxu_w.S b/src/examples/asmtest/isa/rv32ua/amomaxu_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amomaxu_w.S rename to src/examples/asmtest/isa/rv32ua/amomaxu_w.S diff --git a/src/asmtest/isa/rv32ua/amomin_w.S b/src/examples/asmtest/isa/rv32ua/amomin_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amomin_w.S rename to src/examples/asmtest/isa/rv32ua/amomin_w.S diff --git a/src/asmtest/isa/rv32ua/amominu_w.S b/src/examples/asmtest/isa/rv32ua/amominu_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amominu_w.S rename to src/examples/asmtest/isa/rv32ua/amominu_w.S diff --git a/src/asmtest/isa/rv32ua/amoor_w.S b/src/examples/asmtest/isa/rv32ua/amoor_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amoor_w.S rename to src/examples/asmtest/isa/rv32ua/amoor_w.S diff --git a/src/asmtest/isa/rv32ua/amoswap_w.S b/src/examples/asmtest/isa/rv32ua/amoswap_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amoswap_w.S rename to src/examples/asmtest/isa/rv32ua/amoswap_w.S diff --git a/src/asmtest/isa/rv32ua/amoxor_w.S b/src/examples/asmtest/isa/rv32ua/amoxor_w.S similarity index 100% rename from src/asmtest/isa/rv32ua/amoxor_w.S rename to src/examples/asmtest/isa/rv32ua/amoxor_w.S diff --git a/src/asmtest/isa/rv32ua/lrsc.S b/src/examples/asmtest/isa/rv32ua/lrsc.S similarity index 100% rename from src/asmtest/isa/rv32ua/lrsc.S rename to src/examples/asmtest/isa/rv32ua/lrsc.S diff --git a/src/asmtest/isa/rv32uamt/Makefrag b/src/examples/asmtest/isa/rv32uamt/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uamt/Makefrag rename to src/examples/asmtest/isa/rv32uamt/Makefrag diff --git a/src/asmtest/isa/rv32uamt/amoadd_w.S b/src/examples/asmtest/isa/rv32uamt/amoadd_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amoadd_w.S rename to src/examples/asmtest/isa/rv32uamt/amoadd_w.S diff --git a/src/asmtest/isa/rv32uamt/amoand_w.S b/src/examples/asmtest/isa/rv32uamt/amoand_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amoand_w.S rename to src/examples/asmtest/isa/rv32uamt/amoand_w.S diff --git a/src/asmtest/isa/rv32uamt/amomax_w.S b/src/examples/asmtest/isa/rv32uamt/amomax_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amomax_w.S rename to src/examples/asmtest/isa/rv32uamt/amomax_w.S diff --git a/src/asmtest/isa/rv32uamt/amomaxu_w.S b/src/examples/asmtest/isa/rv32uamt/amomaxu_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amomaxu_w.S rename to src/examples/asmtest/isa/rv32uamt/amomaxu_w.S diff --git a/src/asmtest/isa/rv32uamt/amomin_w.S b/src/examples/asmtest/isa/rv32uamt/amomin_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amomin_w.S rename to src/examples/asmtest/isa/rv32uamt/amomin_w.S diff --git a/src/asmtest/isa/rv32uamt/amominu_w.S b/src/examples/asmtest/isa/rv32uamt/amominu_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amominu_w.S rename to src/examples/asmtest/isa/rv32uamt/amominu_w.S diff --git a/src/asmtest/isa/rv32uamt/amoor_w.S b/src/examples/asmtest/isa/rv32uamt/amoor_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amoor_w.S rename to src/examples/asmtest/isa/rv32uamt/amoor_w.S diff --git a/src/asmtest/isa/rv32uamt/amoswap_w.S b/src/examples/asmtest/isa/rv32uamt/amoswap_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amoswap_w.S rename to src/examples/asmtest/isa/rv32uamt/amoswap_w.S diff --git a/src/asmtest/isa/rv32uamt/amoxor_w.S b/src/examples/asmtest/isa/rv32uamt/amoxor_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/amoxor_w.S rename to src/examples/asmtest/isa/rv32uamt/amoxor_w.S diff --git a/src/asmtest/isa/rv32uamt/lrsc_w.S b/src/examples/asmtest/isa/rv32uamt/lrsc_w.S similarity index 100% rename from src/asmtest/isa/rv32uamt/lrsc_w.S rename to src/examples/asmtest/isa/rv32uamt/lrsc_w.S diff --git a/src/asmtest/isa/rv32uc/Makefrag b/src/examples/asmtest/isa/rv32uc/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uc/Makefrag rename to src/examples/asmtest/isa/rv32uc/Makefrag diff --git a/src/asmtest/isa/rv32uc/rvc.S b/src/examples/asmtest/isa/rv32uc/rvc.S similarity index 100% rename from src/asmtest/isa/rv32uc/rvc.S rename to src/examples/asmtest/isa/rv32uc/rvc.S diff --git a/src/asmtest/isa/rv32ud/Makefrag b/src/examples/asmtest/isa/rv32ud/Makefrag similarity index 100% rename from src/asmtest/isa/rv32ud/Makefrag rename to src/examples/asmtest/isa/rv32ud/Makefrag diff --git a/src/asmtest/isa/rv32ud/fadd.S b/src/examples/asmtest/isa/rv32ud/fadd.S similarity index 100% rename from src/asmtest/isa/rv32ud/fadd.S rename to src/examples/asmtest/isa/rv32ud/fadd.S diff --git a/src/asmtest/isa/rv32ud/fclass.S b/src/examples/asmtest/isa/rv32ud/fclass.S similarity index 100% rename from src/asmtest/isa/rv32ud/fclass.S rename to src/examples/asmtest/isa/rv32ud/fclass.S diff --git a/src/asmtest/isa/rv32ud/fcmp.S b/src/examples/asmtest/isa/rv32ud/fcmp.S similarity index 100% rename from src/asmtest/isa/rv32ud/fcmp.S rename to src/examples/asmtest/isa/rv32ud/fcmp.S diff --git a/src/asmtest/isa/rv32ud/fcvt.S b/src/examples/asmtest/isa/rv32ud/fcvt.S similarity index 100% rename from src/asmtest/isa/rv32ud/fcvt.S rename to src/examples/asmtest/isa/rv32ud/fcvt.S diff --git a/src/asmtest/isa/rv32ud/fcvt_w.S b/src/examples/asmtest/isa/rv32ud/fcvt_w.S similarity index 100% rename from src/asmtest/isa/rv32ud/fcvt_w.S rename to src/examples/asmtest/isa/rv32ud/fcvt_w.S diff --git a/src/asmtest/isa/rv32ud/fdiv.S b/src/examples/asmtest/isa/rv32ud/fdiv.S similarity index 100% rename from src/asmtest/isa/rv32ud/fdiv.S rename to src/examples/asmtest/isa/rv32ud/fdiv.S diff --git a/src/asmtest/isa/rv32ud/fmadd.S b/src/examples/asmtest/isa/rv32ud/fmadd.S similarity index 100% rename from src/asmtest/isa/rv32ud/fmadd.S rename to src/examples/asmtest/isa/rv32ud/fmadd.S diff --git a/src/asmtest/isa/rv32ud/fmin.S b/src/examples/asmtest/isa/rv32ud/fmin.S similarity index 100% rename from src/asmtest/isa/rv32ud/fmin.S rename to src/examples/asmtest/isa/rv32ud/fmin.S diff --git a/src/asmtest/isa/rv32ud/ldst.S b/src/examples/asmtest/isa/rv32ud/ldst.S similarity index 100% rename from src/asmtest/isa/rv32ud/ldst.S rename to src/examples/asmtest/isa/rv32ud/ldst.S diff --git a/src/asmtest/isa/rv32ud/move.S b/src/examples/asmtest/isa/rv32ud/move.S similarity index 100% rename from src/asmtest/isa/rv32ud/move.S rename to src/examples/asmtest/isa/rv32ud/move.S diff --git a/src/asmtest/isa/rv32ud/recoding.S b/src/examples/asmtest/isa/rv32ud/recoding.S similarity index 100% rename from src/asmtest/isa/rv32ud/recoding.S rename to src/examples/asmtest/isa/rv32ud/recoding.S diff --git a/src/asmtest/isa/rv32uf/Makefrag b/src/examples/asmtest/isa/rv32uf/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uf/Makefrag rename to src/examples/asmtest/isa/rv32uf/Makefrag diff --git a/src/asmtest/isa/rv32uf/fadd.S b/src/examples/asmtest/isa/rv32uf/fadd.S similarity index 100% rename from src/asmtest/isa/rv32uf/fadd.S rename to src/examples/asmtest/isa/rv32uf/fadd.S diff --git a/src/asmtest/isa/rv32uf/fclass.S b/src/examples/asmtest/isa/rv32uf/fclass.S similarity index 100% rename from src/asmtest/isa/rv32uf/fclass.S rename to src/examples/asmtest/isa/rv32uf/fclass.S diff --git a/src/asmtest/isa/rv32uf/fcmp.S b/src/examples/asmtest/isa/rv32uf/fcmp.S similarity index 100% rename from src/asmtest/isa/rv32uf/fcmp.S rename to src/examples/asmtest/isa/rv32uf/fcmp.S diff --git a/src/asmtest/isa/rv32uf/fcvt.S b/src/examples/asmtest/isa/rv32uf/fcvt.S similarity index 100% rename from src/asmtest/isa/rv32uf/fcvt.S rename to src/examples/asmtest/isa/rv32uf/fcvt.S diff --git a/src/asmtest/isa/rv32uf/fcvt_w.S b/src/examples/asmtest/isa/rv32uf/fcvt_w.S similarity index 100% rename from src/asmtest/isa/rv32uf/fcvt_w.S rename to src/examples/asmtest/isa/rv32uf/fcvt_w.S diff --git a/src/asmtest/isa/rv32uf/fdiv.S b/src/examples/asmtest/isa/rv32uf/fdiv.S similarity index 100% rename from src/asmtest/isa/rv32uf/fdiv.S rename to src/examples/asmtest/isa/rv32uf/fdiv.S diff --git a/src/asmtest/isa/rv32uf/fmadd.S b/src/examples/asmtest/isa/rv32uf/fmadd.S similarity index 100% rename from src/asmtest/isa/rv32uf/fmadd.S rename to src/examples/asmtest/isa/rv32uf/fmadd.S diff --git a/src/asmtest/isa/rv32uf/fmin.S b/src/examples/asmtest/isa/rv32uf/fmin.S similarity index 100% rename from src/asmtest/isa/rv32uf/fmin.S rename to src/examples/asmtest/isa/rv32uf/fmin.S diff --git a/src/asmtest/isa/rv32uf/ldst.S b/src/examples/asmtest/isa/rv32uf/ldst.S similarity index 100% rename from src/asmtest/isa/rv32uf/ldst.S rename to src/examples/asmtest/isa/rv32uf/ldst.S diff --git a/src/asmtest/isa/rv32uf/move.S b/src/examples/asmtest/isa/rv32uf/move.S similarity index 100% rename from src/asmtest/isa/rv32uf/move.S rename to src/examples/asmtest/isa/rv32uf/move.S diff --git a/src/asmtest/isa/rv32uf/recoding.S b/src/examples/asmtest/isa/rv32uf/recoding.S similarity index 100% rename from src/asmtest/isa/rv32uf/recoding.S rename to src/examples/asmtest/isa/rv32uf/recoding.S diff --git a/src/asmtest/isa/rv32ui/Makefrag b/src/examples/asmtest/isa/rv32ui/Makefrag similarity index 100% rename from src/asmtest/isa/rv32ui/Makefrag rename to src/examples/asmtest/isa/rv32ui/Makefrag diff --git a/src/asmtest/isa/rv32ui/add.S b/src/examples/asmtest/isa/rv32ui/add.S similarity index 100% rename from src/asmtest/isa/rv32ui/add.S rename to src/examples/asmtest/isa/rv32ui/add.S diff --git a/src/asmtest/isa/rv32ui/addi.S b/src/examples/asmtest/isa/rv32ui/addi.S similarity index 100% rename from src/asmtest/isa/rv32ui/addi.S rename to src/examples/asmtest/isa/rv32ui/addi.S diff --git a/src/asmtest/isa/rv32ui/and.S b/src/examples/asmtest/isa/rv32ui/and.S similarity index 100% rename from src/asmtest/isa/rv32ui/and.S rename to src/examples/asmtest/isa/rv32ui/and.S diff --git a/src/asmtest/isa/rv32ui/andi.S b/src/examples/asmtest/isa/rv32ui/andi.S similarity index 100% rename from src/asmtest/isa/rv32ui/andi.S rename to src/examples/asmtest/isa/rv32ui/andi.S diff --git a/src/asmtest/isa/rv32ui/auipc.S b/src/examples/asmtest/isa/rv32ui/auipc.S similarity index 100% rename from src/asmtest/isa/rv32ui/auipc.S rename to src/examples/asmtest/isa/rv32ui/auipc.S diff --git a/src/asmtest/isa/rv32ui/beq.S b/src/examples/asmtest/isa/rv32ui/beq.S similarity index 100% rename from src/asmtest/isa/rv32ui/beq.S rename to src/examples/asmtest/isa/rv32ui/beq.S diff --git a/src/asmtest/isa/rv32ui/bge.S b/src/examples/asmtest/isa/rv32ui/bge.S similarity index 100% rename from src/asmtest/isa/rv32ui/bge.S rename to src/examples/asmtest/isa/rv32ui/bge.S diff --git a/src/asmtest/isa/rv32ui/bgeu.S b/src/examples/asmtest/isa/rv32ui/bgeu.S similarity index 100% rename from src/asmtest/isa/rv32ui/bgeu.S rename to src/examples/asmtest/isa/rv32ui/bgeu.S diff --git a/src/asmtest/isa/rv32ui/blt.S b/src/examples/asmtest/isa/rv32ui/blt.S similarity index 100% rename from src/asmtest/isa/rv32ui/blt.S rename to src/examples/asmtest/isa/rv32ui/blt.S diff --git a/src/asmtest/isa/rv32ui/bltu.S b/src/examples/asmtest/isa/rv32ui/bltu.S similarity index 100% rename from src/asmtest/isa/rv32ui/bltu.S rename to src/examples/asmtest/isa/rv32ui/bltu.S diff --git a/src/asmtest/isa/rv32ui/bne.S b/src/examples/asmtest/isa/rv32ui/bne.S similarity index 100% rename from src/asmtest/isa/rv32ui/bne.S rename to src/examples/asmtest/isa/rv32ui/bne.S diff --git a/src/asmtest/isa/rv32ui/fence_i.S b/src/examples/asmtest/isa/rv32ui/fence_i.S similarity index 100% rename from src/asmtest/isa/rv32ui/fence_i.S rename to src/examples/asmtest/isa/rv32ui/fence_i.S diff --git a/src/asmtest/isa/rv32ui/jal.S b/src/examples/asmtest/isa/rv32ui/jal.S similarity index 100% rename from src/asmtest/isa/rv32ui/jal.S rename to src/examples/asmtest/isa/rv32ui/jal.S diff --git a/src/asmtest/isa/rv32ui/jalr.S b/src/examples/asmtest/isa/rv32ui/jalr.S similarity index 100% rename from src/asmtest/isa/rv32ui/jalr.S rename to src/examples/asmtest/isa/rv32ui/jalr.S diff --git a/src/asmtest/isa/rv32ui/lb.S b/src/examples/asmtest/isa/rv32ui/lb.S similarity index 100% rename from src/asmtest/isa/rv32ui/lb.S rename to src/examples/asmtest/isa/rv32ui/lb.S diff --git a/src/asmtest/isa/rv32ui/lbu.S b/src/examples/asmtest/isa/rv32ui/lbu.S similarity index 100% rename from src/asmtest/isa/rv32ui/lbu.S rename to src/examples/asmtest/isa/rv32ui/lbu.S diff --git a/src/asmtest/isa/rv32ui/lh.S b/src/examples/asmtest/isa/rv32ui/lh.S similarity index 100% rename from src/asmtest/isa/rv32ui/lh.S rename to src/examples/asmtest/isa/rv32ui/lh.S diff --git a/src/asmtest/isa/rv32ui/lhu.S b/src/examples/asmtest/isa/rv32ui/lhu.S similarity index 100% rename from src/asmtest/isa/rv32ui/lhu.S rename to src/examples/asmtest/isa/rv32ui/lhu.S diff --git a/src/asmtest/isa/rv32ui/lui.S b/src/examples/asmtest/isa/rv32ui/lui.S similarity index 100% rename from src/asmtest/isa/rv32ui/lui.S rename to src/examples/asmtest/isa/rv32ui/lui.S diff --git a/src/asmtest/isa/rv32ui/lw.S b/src/examples/asmtest/isa/rv32ui/lw.S similarity index 100% rename from src/asmtest/isa/rv32ui/lw.S rename to src/examples/asmtest/isa/rv32ui/lw.S diff --git a/src/asmtest/isa/rv32ui/ma_data.S b/src/examples/asmtest/isa/rv32ui/ma_data.S similarity index 100% rename from src/asmtest/isa/rv32ui/ma_data.S rename to src/examples/asmtest/isa/rv32ui/ma_data.S diff --git a/src/asmtest/isa/rv32ui/or.S b/src/examples/asmtest/isa/rv32ui/or.S similarity index 100% rename from src/asmtest/isa/rv32ui/or.S rename to src/examples/asmtest/isa/rv32ui/or.S diff --git a/src/asmtest/isa/rv32ui/ori.S b/src/examples/asmtest/isa/rv32ui/ori.S similarity index 100% rename from src/asmtest/isa/rv32ui/ori.S rename to src/examples/asmtest/isa/rv32ui/ori.S diff --git a/src/asmtest/isa/rv32ui/sb.S b/src/examples/asmtest/isa/rv32ui/sb.S similarity index 100% rename from src/asmtest/isa/rv32ui/sb.S rename to src/examples/asmtest/isa/rv32ui/sb.S diff --git a/src/asmtest/isa/rv32ui/sh.S b/src/examples/asmtest/isa/rv32ui/sh.S similarity index 100% rename from src/asmtest/isa/rv32ui/sh.S rename to src/examples/asmtest/isa/rv32ui/sh.S diff --git a/src/asmtest/isa/rv32ui/simple.S b/src/examples/asmtest/isa/rv32ui/simple.S similarity index 100% rename from src/asmtest/isa/rv32ui/simple.S rename to src/examples/asmtest/isa/rv32ui/simple.S diff --git a/src/asmtest/isa/rv32ui/sll.S b/src/examples/asmtest/isa/rv32ui/sll.S similarity index 100% rename from src/asmtest/isa/rv32ui/sll.S rename to src/examples/asmtest/isa/rv32ui/sll.S diff --git a/src/asmtest/isa/rv32ui/slli.S b/src/examples/asmtest/isa/rv32ui/slli.S similarity index 100% rename from src/asmtest/isa/rv32ui/slli.S rename to src/examples/asmtest/isa/rv32ui/slli.S diff --git a/src/asmtest/isa/rv32ui/slt.S b/src/examples/asmtest/isa/rv32ui/slt.S similarity index 100% rename from src/asmtest/isa/rv32ui/slt.S rename to src/examples/asmtest/isa/rv32ui/slt.S diff --git a/src/asmtest/isa/rv32ui/slti.S b/src/examples/asmtest/isa/rv32ui/slti.S similarity index 100% rename from src/asmtest/isa/rv32ui/slti.S rename to src/examples/asmtest/isa/rv32ui/slti.S diff --git a/src/asmtest/isa/rv32ui/sltiu.S b/src/examples/asmtest/isa/rv32ui/sltiu.S similarity index 100% rename from src/asmtest/isa/rv32ui/sltiu.S rename to src/examples/asmtest/isa/rv32ui/sltiu.S diff --git a/src/asmtest/isa/rv32ui/sltu.S b/src/examples/asmtest/isa/rv32ui/sltu.S similarity index 100% rename from src/asmtest/isa/rv32ui/sltu.S rename to src/examples/asmtest/isa/rv32ui/sltu.S diff --git a/src/asmtest/isa/rv32ui/sra.S b/src/examples/asmtest/isa/rv32ui/sra.S similarity index 100% rename from src/asmtest/isa/rv32ui/sra.S rename to src/examples/asmtest/isa/rv32ui/sra.S diff --git a/src/asmtest/isa/rv32ui/srai.S b/src/examples/asmtest/isa/rv32ui/srai.S similarity index 100% rename from src/asmtest/isa/rv32ui/srai.S rename to src/examples/asmtest/isa/rv32ui/srai.S diff --git a/src/asmtest/isa/rv32ui/srl.S b/src/examples/asmtest/isa/rv32ui/srl.S similarity index 100% rename from src/asmtest/isa/rv32ui/srl.S rename to src/examples/asmtest/isa/rv32ui/srl.S diff --git a/src/asmtest/isa/rv32ui/srli.S b/src/examples/asmtest/isa/rv32ui/srli.S similarity index 100% rename from src/asmtest/isa/rv32ui/srli.S rename to src/examples/asmtest/isa/rv32ui/srli.S diff --git a/src/asmtest/isa/rv32ui/sub.S b/src/examples/asmtest/isa/rv32ui/sub.S similarity index 100% rename from src/asmtest/isa/rv32ui/sub.S rename to src/examples/asmtest/isa/rv32ui/sub.S diff --git a/src/asmtest/isa/rv32ui/sw.S b/src/examples/asmtest/isa/rv32ui/sw.S similarity index 100% rename from src/asmtest/isa/rv32ui/sw.S rename to src/examples/asmtest/isa/rv32ui/sw.S diff --git a/src/asmtest/isa/rv32ui/xor.S b/src/examples/asmtest/isa/rv32ui/xor.S similarity index 100% rename from src/asmtest/isa/rv32ui/xor.S rename to src/examples/asmtest/isa/rv32ui/xor.S diff --git a/src/asmtest/isa/rv32ui/xori.S b/src/examples/asmtest/isa/rv32ui/xori.S similarity index 100% rename from src/asmtest/isa/rv32ui/xori.S rename to src/examples/asmtest/isa/rv32ui/xori.S diff --git a/src/asmtest/isa/rv32um/Makefrag b/src/examples/asmtest/isa/rv32um/Makefrag similarity index 100% rename from src/asmtest/isa/rv32um/Makefrag rename to src/examples/asmtest/isa/rv32um/Makefrag diff --git a/src/asmtest/isa/rv32um/div.S b/src/examples/asmtest/isa/rv32um/div.S similarity index 100% rename from src/asmtest/isa/rv32um/div.S rename to src/examples/asmtest/isa/rv32um/div.S diff --git a/src/asmtest/isa/rv32um/divu.S b/src/examples/asmtest/isa/rv32um/divu.S similarity index 100% rename from src/asmtest/isa/rv32um/divu.S rename to src/examples/asmtest/isa/rv32um/divu.S diff --git a/src/asmtest/isa/rv32um/mul.S b/src/examples/asmtest/isa/rv32um/mul.S similarity index 100% rename from src/asmtest/isa/rv32um/mul.S rename to src/examples/asmtest/isa/rv32um/mul.S diff --git a/src/asmtest/isa/rv32um/mulh.S b/src/examples/asmtest/isa/rv32um/mulh.S similarity index 100% rename from src/asmtest/isa/rv32um/mulh.S rename to src/examples/asmtest/isa/rv32um/mulh.S diff --git a/src/asmtest/isa/rv32um/mulhsu.S b/src/examples/asmtest/isa/rv32um/mulhsu.S similarity index 100% rename from src/asmtest/isa/rv32um/mulhsu.S rename to src/examples/asmtest/isa/rv32um/mulhsu.S diff --git a/src/asmtest/isa/rv32um/mulhu.S b/src/examples/asmtest/isa/rv32um/mulhu.S similarity index 100% rename from src/asmtest/isa/rv32um/mulhu.S rename to src/examples/asmtest/isa/rv32um/mulhu.S diff --git a/src/asmtest/isa/rv32um/rem.S b/src/examples/asmtest/isa/rv32um/rem.S similarity index 100% rename from src/asmtest/isa/rv32um/rem.S rename to src/examples/asmtest/isa/rv32um/rem.S diff --git a/src/asmtest/isa/rv32um/remu.S b/src/examples/asmtest/isa/rv32um/remu.S similarity index 100% rename from src/asmtest/isa/rv32um/remu.S rename to src/examples/asmtest/isa/rv32um/remu.S diff --git a/src/asmtest/isa/rv32uzba/Makefrag b/src/examples/asmtest/isa/rv32uzba/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uzba/Makefrag rename to src/examples/asmtest/isa/rv32uzba/Makefrag diff --git a/src/asmtest/isa/rv32uzba/sh1add.S b/src/examples/asmtest/isa/rv32uzba/sh1add.S similarity index 100% rename from src/asmtest/isa/rv32uzba/sh1add.S rename to src/examples/asmtest/isa/rv32uzba/sh1add.S diff --git a/src/asmtest/isa/rv32uzba/sh2add.S b/src/examples/asmtest/isa/rv32uzba/sh2add.S similarity index 100% rename from src/asmtest/isa/rv32uzba/sh2add.S rename to src/examples/asmtest/isa/rv32uzba/sh2add.S diff --git a/src/asmtest/isa/rv32uzba/sh3add.S b/src/examples/asmtest/isa/rv32uzba/sh3add.S similarity index 100% rename from src/asmtest/isa/rv32uzba/sh3add.S rename to src/examples/asmtest/isa/rv32uzba/sh3add.S diff --git a/src/asmtest/isa/rv32uzbb/Makefrag b/src/examples/asmtest/isa/rv32uzbb/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uzbb/Makefrag rename to src/examples/asmtest/isa/rv32uzbb/Makefrag diff --git a/src/asmtest/isa/rv32uzbb/andn.S b/src/examples/asmtest/isa/rv32uzbb/andn.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/andn.S rename to src/examples/asmtest/isa/rv32uzbb/andn.S diff --git a/src/asmtest/isa/rv32uzbb/clz.S b/src/examples/asmtest/isa/rv32uzbb/clz.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/clz.S rename to src/examples/asmtest/isa/rv32uzbb/clz.S diff --git a/src/asmtest/isa/rv32uzbb/cpop.S b/src/examples/asmtest/isa/rv32uzbb/cpop.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/cpop.S rename to src/examples/asmtest/isa/rv32uzbb/cpop.S diff --git a/src/asmtest/isa/rv32uzbb/ctz.S b/src/examples/asmtest/isa/rv32uzbb/ctz.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/ctz.S rename to src/examples/asmtest/isa/rv32uzbb/ctz.S diff --git a/src/asmtest/isa/rv32uzbb/max.S b/src/examples/asmtest/isa/rv32uzbb/max.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/max.S rename to src/examples/asmtest/isa/rv32uzbb/max.S diff --git a/src/asmtest/isa/rv32uzbb/maxu.S b/src/examples/asmtest/isa/rv32uzbb/maxu.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/maxu.S rename to src/examples/asmtest/isa/rv32uzbb/maxu.S diff --git a/src/asmtest/isa/rv32uzbb/min.S b/src/examples/asmtest/isa/rv32uzbb/min.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/min.S rename to src/examples/asmtest/isa/rv32uzbb/min.S diff --git a/src/asmtest/isa/rv32uzbb/minu.S b/src/examples/asmtest/isa/rv32uzbb/minu.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/minu.S rename to src/examples/asmtest/isa/rv32uzbb/minu.S diff --git a/src/asmtest/isa/rv32uzbb/orc_b.S b/src/examples/asmtest/isa/rv32uzbb/orc_b.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/orc_b.S rename to src/examples/asmtest/isa/rv32uzbb/orc_b.S diff --git a/src/asmtest/isa/rv32uzbb/orn.S b/src/examples/asmtest/isa/rv32uzbb/orn.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/orn.S rename to src/examples/asmtest/isa/rv32uzbb/orn.S diff --git a/src/asmtest/isa/rv32uzbb/rev8.S b/src/examples/asmtest/isa/rv32uzbb/rev8.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/rev8.S rename to src/examples/asmtest/isa/rv32uzbb/rev8.S diff --git a/src/asmtest/isa/rv32uzbb/rol.S b/src/examples/asmtest/isa/rv32uzbb/rol.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/rol.S rename to src/examples/asmtest/isa/rv32uzbb/rol.S diff --git a/src/asmtest/isa/rv32uzbb/ror.S b/src/examples/asmtest/isa/rv32uzbb/ror.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/ror.S rename to src/examples/asmtest/isa/rv32uzbb/ror.S diff --git a/src/asmtest/isa/rv32uzbb/rori.S b/src/examples/asmtest/isa/rv32uzbb/rori.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/rori.S rename to src/examples/asmtest/isa/rv32uzbb/rori.S diff --git a/src/asmtest/isa/rv32uzbb/sext_b.S b/src/examples/asmtest/isa/rv32uzbb/sext_b.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/sext_b.S rename to src/examples/asmtest/isa/rv32uzbb/sext_b.S diff --git a/src/asmtest/isa/rv32uzbb/sext_h.S b/src/examples/asmtest/isa/rv32uzbb/sext_h.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/sext_h.S rename to src/examples/asmtest/isa/rv32uzbb/sext_h.S diff --git a/src/asmtest/isa/rv32uzbb/xnor.S b/src/examples/asmtest/isa/rv32uzbb/xnor.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/xnor.S rename to src/examples/asmtest/isa/rv32uzbb/xnor.S diff --git a/src/asmtest/isa/rv32uzbb/zext_h.S b/src/examples/asmtest/isa/rv32uzbb/zext_h.S similarity index 100% rename from src/asmtest/isa/rv32uzbb/zext_h.S rename to src/examples/asmtest/isa/rv32uzbb/zext_h.S diff --git a/src/asmtest/isa/rv32uzbc/Makefrag b/src/examples/asmtest/isa/rv32uzbc/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uzbc/Makefrag rename to src/examples/asmtest/isa/rv32uzbc/Makefrag diff --git a/src/asmtest/isa/rv32uzbc/clmul.S b/src/examples/asmtest/isa/rv32uzbc/clmul.S similarity index 100% rename from src/asmtest/isa/rv32uzbc/clmul.S rename to src/examples/asmtest/isa/rv32uzbc/clmul.S diff --git a/src/asmtest/isa/rv32uzbc/clmulh.S b/src/examples/asmtest/isa/rv32uzbc/clmulh.S similarity index 100% rename from src/asmtest/isa/rv32uzbc/clmulh.S rename to src/examples/asmtest/isa/rv32uzbc/clmulh.S diff --git a/src/asmtest/isa/rv32uzbc/clmulr.S b/src/examples/asmtest/isa/rv32uzbc/clmulr.S similarity index 100% rename from src/asmtest/isa/rv32uzbc/clmulr.S rename to src/examples/asmtest/isa/rv32uzbc/clmulr.S diff --git a/src/asmtest/isa/rv32uzbs/Makefrag b/src/examples/asmtest/isa/rv32uzbs/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uzbs/Makefrag rename to src/examples/asmtest/isa/rv32uzbs/Makefrag diff --git a/src/asmtest/isa/rv32uzbs/bclr.S b/src/examples/asmtest/isa/rv32uzbs/bclr.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/bclr.S rename to src/examples/asmtest/isa/rv32uzbs/bclr.S diff --git a/src/asmtest/isa/rv32uzbs/bclri.S b/src/examples/asmtest/isa/rv32uzbs/bclri.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/bclri.S rename to src/examples/asmtest/isa/rv32uzbs/bclri.S diff --git a/src/asmtest/isa/rv32uzbs/bext.S b/src/examples/asmtest/isa/rv32uzbs/bext.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/bext.S rename to src/examples/asmtest/isa/rv32uzbs/bext.S diff --git a/src/asmtest/isa/rv32uzbs/bexti.S b/src/examples/asmtest/isa/rv32uzbs/bexti.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/bexti.S rename to src/examples/asmtest/isa/rv32uzbs/bexti.S diff --git a/src/asmtest/isa/rv32uzbs/binv.S b/src/examples/asmtest/isa/rv32uzbs/binv.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/binv.S rename to src/examples/asmtest/isa/rv32uzbs/binv.S diff --git a/src/asmtest/isa/rv32uzbs/binvi.S b/src/examples/asmtest/isa/rv32uzbs/binvi.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/binvi.S rename to src/examples/asmtest/isa/rv32uzbs/binvi.S diff --git a/src/asmtest/isa/rv32uzbs/bset.S b/src/examples/asmtest/isa/rv32uzbs/bset.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/bset.S rename to src/examples/asmtest/isa/rv32uzbs/bset.S diff --git a/src/asmtest/isa/rv32uzbs/bseti.S b/src/examples/asmtest/isa/rv32uzbs/bseti.S similarity index 100% rename from src/asmtest/isa/rv32uzbs/bseti.S rename to src/examples/asmtest/isa/rv32uzbs/bseti.S diff --git a/src/asmtest/isa/rv32uzfh/Makefrag b/src/examples/asmtest/isa/rv32uzfh/Makefrag similarity index 100% rename from src/asmtest/isa/rv32uzfh/Makefrag rename to src/examples/asmtest/isa/rv32uzfh/Makefrag diff --git a/src/asmtest/isa/rv32uzfh/fadd.S b/src/examples/asmtest/isa/rv32uzfh/fadd.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fadd.S rename to src/examples/asmtest/isa/rv32uzfh/fadd.S diff --git a/src/asmtest/isa/rv32uzfh/fclass.S b/src/examples/asmtest/isa/rv32uzfh/fclass.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fclass.S rename to src/examples/asmtest/isa/rv32uzfh/fclass.S diff --git a/src/asmtest/isa/rv32uzfh/fcmp.S b/src/examples/asmtest/isa/rv32uzfh/fcmp.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fcmp.S rename to src/examples/asmtest/isa/rv32uzfh/fcmp.S diff --git a/src/asmtest/isa/rv32uzfh/fcvt.S b/src/examples/asmtest/isa/rv32uzfh/fcvt.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fcvt.S rename to src/examples/asmtest/isa/rv32uzfh/fcvt.S diff --git a/src/asmtest/isa/rv32uzfh/fcvt_w.S b/src/examples/asmtest/isa/rv32uzfh/fcvt_w.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fcvt_w.S rename to src/examples/asmtest/isa/rv32uzfh/fcvt_w.S diff --git a/src/asmtest/isa/rv32uzfh/fdiv.S b/src/examples/asmtest/isa/rv32uzfh/fdiv.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fdiv.S rename to src/examples/asmtest/isa/rv32uzfh/fdiv.S diff --git a/src/asmtest/isa/rv32uzfh/fmadd.S b/src/examples/asmtest/isa/rv32uzfh/fmadd.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fmadd.S rename to src/examples/asmtest/isa/rv32uzfh/fmadd.S diff --git a/src/asmtest/isa/rv32uzfh/fmin.S b/src/examples/asmtest/isa/rv32uzfh/fmin.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/fmin.S rename to src/examples/asmtest/isa/rv32uzfh/fmin.S diff --git a/src/asmtest/isa/rv32uzfh/ldst.S b/src/examples/asmtest/isa/rv32uzfh/ldst.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/ldst.S rename to src/examples/asmtest/isa/rv32uzfh/ldst.S diff --git a/src/asmtest/isa/rv32uzfh/move.S b/src/examples/asmtest/isa/rv32uzfh/move.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/move.S rename to src/examples/asmtest/isa/rv32uzfh/move.S diff --git a/src/asmtest/isa/rv32uzfh/recoding.S b/src/examples/asmtest/isa/rv32uzfh/recoding.S similarity index 100% rename from src/asmtest/isa/rv32uzfh/recoding.S rename to src/examples/asmtest/isa/rv32uzfh/recoding.S diff --git a/src/asmtest/isa/rv64mi/Makefrag b/src/examples/asmtest/isa/rv64mi/Makefrag similarity index 100% rename from src/asmtest/isa/rv64mi/Makefrag rename to src/examples/asmtest/isa/rv64mi/Makefrag diff --git a/src/asmtest/isa/rv64mi/access.S b/src/examples/asmtest/isa/rv64mi/access.S similarity index 100% rename from src/asmtest/isa/rv64mi/access.S rename to src/examples/asmtest/isa/rv64mi/access.S diff --git a/src/asmtest/isa/rv64mi/breakpoint.S b/src/examples/asmtest/isa/rv64mi/breakpoint.S similarity index 100% rename from src/asmtest/isa/rv64mi/breakpoint.S rename to src/examples/asmtest/isa/rv64mi/breakpoint.S diff --git a/src/asmtest/isa/rv64mi/csr.S b/src/examples/asmtest/isa/rv64mi/csr.S similarity index 100% rename from src/asmtest/isa/rv64mi/csr.S rename to src/examples/asmtest/isa/rv64mi/csr.S diff --git a/src/asmtest/isa/rv64mi/illegal.S b/src/examples/asmtest/isa/rv64mi/illegal.S similarity index 100% rename from src/asmtest/isa/rv64mi/illegal.S rename to src/examples/asmtest/isa/rv64mi/illegal.S diff --git a/src/asmtest/isa/rv64mi/ld-misaligned.S b/src/examples/asmtest/isa/rv64mi/ld-misaligned.S similarity index 100% rename from src/asmtest/isa/rv64mi/ld-misaligned.S rename to src/examples/asmtest/isa/rv64mi/ld-misaligned.S diff --git a/src/asmtest/isa/rv64mi/lh-misaligned.S b/src/examples/asmtest/isa/rv64mi/lh-misaligned.S similarity index 100% rename from src/asmtest/isa/rv64mi/lh-misaligned.S rename to src/examples/asmtest/isa/rv64mi/lh-misaligned.S diff --git a/src/asmtest/isa/rv64mi/lw-misaligned.S b/src/examples/asmtest/isa/rv64mi/lw-misaligned.S similarity index 100% rename from src/asmtest/isa/rv64mi/lw-misaligned.S rename to src/examples/asmtest/isa/rv64mi/lw-misaligned.S diff --git a/src/asmtest/isa/rv64mi/ma_addr.S b/src/examples/asmtest/isa/rv64mi/ma_addr.S similarity index 100% rename from src/asmtest/isa/rv64mi/ma_addr.S rename to src/examples/asmtest/isa/rv64mi/ma_addr.S diff --git a/src/asmtest/isa/rv64mi/ma_fetch.S b/src/examples/asmtest/isa/rv64mi/ma_fetch.S similarity index 100% rename from src/asmtest/isa/rv64mi/ma_fetch.S rename to src/examples/asmtest/isa/rv64mi/ma_fetch.S diff --git a/src/asmtest/isa/rv64mi/mcsr.S b/src/examples/asmtest/isa/rv64mi/mcsr.S similarity index 100% rename from src/asmtest/isa/rv64mi/mcsr.S rename to src/examples/asmtest/isa/rv64mi/mcsr.S diff --git a/src/asmtest/isa/rv64mi/sbreak.S b/src/examples/asmtest/isa/rv64mi/sbreak.S similarity index 100% rename from src/asmtest/isa/rv64mi/sbreak.S rename to src/examples/asmtest/isa/rv64mi/sbreak.S diff --git a/src/asmtest/isa/rv64mi/scall.S b/src/examples/asmtest/isa/rv64mi/scall.S similarity index 100% rename from src/asmtest/isa/rv64mi/scall.S rename to src/examples/asmtest/isa/rv64mi/scall.S diff --git a/src/asmtest/isa/rv64mi/sd-misaligned.S b/src/examples/asmtest/isa/rv64mi/sd-misaligned.S similarity index 100% rename from src/asmtest/isa/rv64mi/sd-misaligned.S rename to src/examples/asmtest/isa/rv64mi/sd-misaligned.S diff --git a/src/asmtest/isa/rv64mi/sh-misaligned.S b/src/examples/asmtest/isa/rv64mi/sh-misaligned.S similarity index 100% rename from src/asmtest/isa/rv64mi/sh-misaligned.S rename to src/examples/asmtest/isa/rv64mi/sh-misaligned.S diff --git a/src/asmtest/isa/rv64mi/sw-misaligned.S b/src/examples/asmtest/isa/rv64mi/sw-misaligned.S similarity index 100% rename from src/asmtest/isa/rv64mi/sw-misaligned.S rename to src/examples/asmtest/isa/rv64mi/sw-misaligned.S diff --git a/src/asmtest/isa/rv64mi/zicntr.S b/src/examples/asmtest/isa/rv64mi/zicntr.S similarity index 100% rename from src/asmtest/isa/rv64mi/zicntr.S rename to src/examples/asmtest/isa/rv64mi/zicntr.S diff --git a/src/asmtest/isa/rv64mzicbo/Makefrag b/src/examples/asmtest/isa/rv64mzicbo/Makefrag similarity index 100% rename from src/asmtest/isa/rv64mzicbo/Makefrag rename to src/examples/asmtest/isa/rv64mzicbo/Makefrag diff --git a/src/asmtest/isa/rv64mzicbo/zero.S b/src/examples/asmtest/isa/rv64mzicbo/zero.S similarity index 100% rename from src/asmtest/isa/rv64mzicbo/zero.S rename to src/examples/asmtest/isa/rv64mzicbo/zero.S diff --git a/src/asmtest/isa/rv64samt/Makefrag b/src/examples/asmtest/isa/rv64samt/Makefrag similarity index 100% rename from src/asmtest/isa/rv64samt/Makefrag rename to src/examples/asmtest/isa/rv64samt/Makefrag diff --git a/src/asmtest/isa/rv64samt/sysclone_d.S b/src/examples/asmtest/isa/rv64samt/sysclone_d.S similarity index 100% rename from src/asmtest/isa/rv64samt/sysclone_d.S rename to src/examples/asmtest/isa/rv64samt/sysclone_d.S diff --git a/src/asmtest/isa/rv64samt/sysfutex1_d.S b/src/examples/asmtest/isa/rv64samt/sysfutex1_d.S similarity index 100% rename from src/asmtest/isa/rv64samt/sysfutex1_d.S rename to src/examples/asmtest/isa/rv64samt/sysfutex1_d.S diff --git a/src/asmtest/isa/rv64samt/sysfutex2_d.S b/src/examples/asmtest/isa/rv64samt/sysfutex2_d.S similarity index 100% rename from src/asmtest/isa/rv64samt/sysfutex2_d.S rename to src/examples/asmtest/isa/rv64samt/sysfutex2_d.S diff --git a/src/asmtest/isa/rv64samt/sysfutex3_d.S b/src/examples/asmtest/isa/rv64samt/sysfutex3_d.S similarity index 100% rename from src/asmtest/isa/rv64samt/sysfutex3_d.S rename to src/examples/asmtest/isa/rv64samt/sysfutex3_d.S diff --git a/src/asmtest/isa/rv64samt/sysfutex_d.S b/src/examples/asmtest/isa/rv64samt/sysfutex_d.S similarity index 100% rename from src/asmtest/isa/rv64samt/sysfutex_d.S rename to src/examples/asmtest/isa/rv64samt/sysfutex_d.S diff --git a/src/asmtest/isa/rv64si/Makefrag b/src/examples/asmtest/isa/rv64si/Makefrag similarity index 100% rename from src/asmtest/isa/rv64si/Makefrag rename to src/examples/asmtest/isa/rv64si/Makefrag diff --git a/src/asmtest/isa/rv64si/csr.S b/src/examples/asmtest/isa/rv64si/csr.S similarity index 100% rename from src/asmtest/isa/rv64si/csr.S rename to src/examples/asmtest/isa/rv64si/csr.S diff --git a/src/asmtest/isa/rv64si/dirty.S b/src/examples/asmtest/isa/rv64si/dirty.S similarity index 100% rename from src/asmtest/isa/rv64si/dirty.S rename to src/examples/asmtest/isa/rv64si/dirty.S diff --git a/src/asmtest/isa/rv64si/icache-alias.S b/src/examples/asmtest/isa/rv64si/icache-alias.S similarity index 100% rename from src/asmtest/isa/rv64si/icache-alias.S rename to src/examples/asmtest/isa/rv64si/icache-alias.S diff --git a/src/asmtest/isa/rv64si/ma_fetch.S b/src/examples/asmtest/isa/rv64si/ma_fetch.S similarity index 100% rename from src/asmtest/isa/rv64si/ma_fetch.S rename to src/examples/asmtest/isa/rv64si/ma_fetch.S diff --git a/src/asmtest/isa/rv64si/sbreak.S b/src/examples/asmtest/isa/rv64si/sbreak.S similarity index 100% rename from src/asmtest/isa/rv64si/sbreak.S rename to src/examples/asmtest/isa/rv64si/sbreak.S diff --git a/src/asmtest/isa/rv64si/scall.S b/src/examples/asmtest/isa/rv64si/scall.S similarity index 100% rename from src/asmtest/isa/rv64si/scall.S rename to src/examples/asmtest/isa/rv64si/scall.S diff --git a/src/asmtest/isa/rv64si/wfi.S b/src/examples/asmtest/isa/rv64si/wfi.S similarity index 100% rename from src/asmtest/isa/rv64si/wfi.S rename to src/examples/asmtest/isa/rv64si/wfi.S diff --git a/src/asmtest/isa/rv64ssvnapot/Makefrag b/src/examples/asmtest/isa/rv64ssvnapot/Makefrag similarity index 100% rename from src/asmtest/isa/rv64ssvnapot/Makefrag rename to src/examples/asmtest/isa/rv64ssvnapot/Makefrag diff --git a/src/asmtest/isa/rv64ssvnapot/napot.S b/src/examples/asmtest/isa/rv64ssvnapot/napot.S similarity index 100% rename from src/asmtest/isa/rv64ssvnapot/napot.S rename to src/examples/asmtest/isa/rv64ssvnapot/napot.S diff --git a/src/asmtest/isa/rv64ua/Makefrag b/src/examples/asmtest/isa/rv64ua/Makefrag similarity index 100% rename from src/asmtest/isa/rv64ua/Makefrag rename to src/examples/asmtest/isa/rv64ua/Makefrag diff --git a/src/asmtest/isa/rv64ua/amoadd_d.S b/src/examples/asmtest/isa/rv64ua/amoadd_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoadd_d.S rename to src/examples/asmtest/isa/rv64ua/amoadd_d.S diff --git a/src/asmtest/isa/rv64ua/amoadd_w.S b/src/examples/asmtest/isa/rv64ua/amoadd_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoadd_w.S rename to src/examples/asmtest/isa/rv64ua/amoadd_w.S diff --git a/src/asmtest/isa/rv64ua/amoand_d.S b/src/examples/asmtest/isa/rv64ua/amoand_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoand_d.S rename to src/examples/asmtest/isa/rv64ua/amoand_d.S diff --git a/src/asmtest/isa/rv64ua/amoand_w.S b/src/examples/asmtest/isa/rv64ua/amoand_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoand_w.S rename to src/examples/asmtest/isa/rv64ua/amoand_w.S diff --git a/src/asmtest/isa/rv64ua/amomax_d.S b/src/examples/asmtest/isa/rv64ua/amomax_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amomax_d.S rename to src/examples/asmtest/isa/rv64ua/amomax_d.S diff --git a/src/asmtest/isa/rv64ua/amomax_w.S b/src/examples/asmtest/isa/rv64ua/amomax_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amomax_w.S rename to src/examples/asmtest/isa/rv64ua/amomax_w.S diff --git a/src/asmtest/isa/rv64ua/amomaxu_d.S b/src/examples/asmtest/isa/rv64ua/amomaxu_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amomaxu_d.S rename to src/examples/asmtest/isa/rv64ua/amomaxu_d.S diff --git a/src/asmtest/isa/rv64ua/amomaxu_w.S b/src/examples/asmtest/isa/rv64ua/amomaxu_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amomaxu_w.S rename to src/examples/asmtest/isa/rv64ua/amomaxu_w.S diff --git a/src/asmtest/isa/rv64ua/amomin_d.S b/src/examples/asmtest/isa/rv64ua/amomin_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amomin_d.S rename to src/examples/asmtest/isa/rv64ua/amomin_d.S diff --git a/src/asmtest/isa/rv64ua/amomin_w.S b/src/examples/asmtest/isa/rv64ua/amomin_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amomin_w.S rename to src/examples/asmtest/isa/rv64ua/amomin_w.S diff --git a/src/asmtest/isa/rv64ua/amominu_d.S b/src/examples/asmtest/isa/rv64ua/amominu_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amominu_d.S rename to src/examples/asmtest/isa/rv64ua/amominu_d.S diff --git a/src/asmtest/isa/rv64ua/amominu_w.S b/src/examples/asmtest/isa/rv64ua/amominu_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amominu_w.S rename to src/examples/asmtest/isa/rv64ua/amominu_w.S diff --git a/src/asmtest/isa/rv64ua/amoor_d.S b/src/examples/asmtest/isa/rv64ua/amoor_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoor_d.S rename to src/examples/asmtest/isa/rv64ua/amoor_d.S diff --git a/src/asmtest/isa/rv64ua/amoor_w.S b/src/examples/asmtest/isa/rv64ua/amoor_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoor_w.S rename to src/examples/asmtest/isa/rv64ua/amoor_w.S diff --git a/src/asmtest/isa/rv64ua/amoswap_d.S b/src/examples/asmtest/isa/rv64ua/amoswap_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoswap_d.S rename to src/examples/asmtest/isa/rv64ua/amoswap_d.S diff --git a/src/asmtest/isa/rv64ua/amoswap_w.S b/src/examples/asmtest/isa/rv64ua/amoswap_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoswap_w.S rename to src/examples/asmtest/isa/rv64ua/amoswap_w.S diff --git a/src/asmtest/isa/rv64ua/amoxor_d.S b/src/examples/asmtest/isa/rv64ua/amoxor_d.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoxor_d.S rename to src/examples/asmtest/isa/rv64ua/amoxor_d.S diff --git a/src/asmtest/isa/rv64ua/amoxor_w.S b/src/examples/asmtest/isa/rv64ua/amoxor_w.S similarity index 100% rename from src/asmtest/isa/rv64ua/amoxor_w.S rename to src/examples/asmtest/isa/rv64ua/amoxor_w.S diff --git a/src/asmtest/isa/rv64ua/lrsc.S b/src/examples/asmtest/isa/rv64ua/lrsc.S similarity index 100% rename from src/asmtest/isa/rv64ua/lrsc.S rename to src/examples/asmtest/isa/rv64ua/lrsc.S diff --git a/src/asmtest/isa/rv64uamt/Makefrag b/src/examples/asmtest/isa/rv64uamt/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uamt/Makefrag rename to src/examples/asmtest/isa/rv64uamt/Makefrag diff --git a/src/asmtest/isa/rv64uamt/amoadd_d.S b/src/examples/asmtest/isa/rv64uamt/amoadd_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amoadd_d.S rename to src/examples/asmtest/isa/rv64uamt/amoadd_d.S diff --git a/src/asmtest/isa/rv64uamt/amoand_d.S b/src/examples/asmtest/isa/rv64uamt/amoand_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amoand_d.S rename to src/examples/asmtest/isa/rv64uamt/amoand_d.S diff --git a/src/asmtest/isa/rv64uamt/amomax_d.S b/src/examples/asmtest/isa/rv64uamt/amomax_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amomax_d.S rename to src/examples/asmtest/isa/rv64uamt/amomax_d.S diff --git a/src/asmtest/isa/rv64uamt/amomaxu_d.S b/src/examples/asmtest/isa/rv64uamt/amomaxu_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amomaxu_d.S rename to src/examples/asmtest/isa/rv64uamt/amomaxu_d.S diff --git a/src/asmtest/isa/rv64uamt/amomin_d.S b/src/examples/asmtest/isa/rv64uamt/amomin_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amomin_d.S rename to src/examples/asmtest/isa/rv64uamt/amomin_d.S diff --git a/src/asmtest/isa/rv64uamt/amominu_d.S b/src/examples/asmtest/isa/rv64uamt/amominu_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amominu_d.S rename to src/examples/asmtest/isa/rv64uamt/amominu_d.S diff --git a/src/asmtest/isa/rv64uamt/amoor_d.S b/src/examples/asmtest/isa/rv64uamt/amoor_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amoor_d.S rename to src/examples/asmtest/isa/rv64uamt/amoor_d.S diff --git a/src/asmtest/isa/rv64uamt/amoswap_d.S b/src/examples/asmtest/isa/rv64uamt/amoswap_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amoswap_d.S rename to src/examples/asmtest/isa/rv64uamt/amoswap_d.S diff --git a/src/asmtest/isa/rv64uamt/amoxor_d.S b/src/examples/asmtest/isa/rv64uamt/amoxor_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/amoxor_d.S rename to src/examples/asmtest/isa/rv64uamt/amoxor_d.S diff --git a/src/asmtest/isa/rv64uamt/lrsc_d.S b/src/examples/asmtest/isa/rv64uamt/lrsc_d.S similarity index 100% rename from src/asmtest/isa/rv64uamt/lrsc_d.S rename to src/examples/asmtest/isa/rv64uamt/lrsc_d.S diff --git a/src/asmtest/isa/rv64uc/Makefrag b/src/examples/asmtest/isa/rv64uc/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uc/Makefrag rename to src/examples/asmtest/isa/rv64uc/Makefrag diff --git a/src/asmtest/isa/rv64uc/rvc.S b/src/examples/asmtest/isa/rv64uc/rvc.S similarity index 100% rename from src/asmtest/isa/rv64uc/rvc.S rename to src/examples/asmtest/isa/rv64uc/rvc.S diff --git a/src/asmtest/isa/rv64ud/Makefrag b/src/examples/asmtest/isa/rv64ud/Makefrag similarity index 100% rename from src/asmtest/isa/rv64ud/Makefrag rename to src/examples/asmtest/isa/rv64ud/Makefrag diff --git a/src/asmtest/isa/rv64ud/fadd.S b/src/examples/asmtest/isa/rv64ud/fadd.S similarity index 100% rename from src/asmtest/isa/rv64ud/fadd.S rename to src/examples/asmtest/isa/rv64ud/fadd.S diff --git a/src/asmtest/isa/rv64ud/fclass.S b/src/examples/asmtest/isa/rv64ud/fclass.S similarity index 100% rename from src/asmtest/isa/rv64ud/fclass.S rename to src/examples/asmtest/isa/rv64ud/fclass.S diff --git a/src/asmtest/isa/rv64ud/fcmp.S b/src/examples/asmtest/isa/rv64ud/fcmp.S similarity index 100% rename from src/asmtest/isa/rv64ud/fcmp.S rename to src/examples/asmtest/isa/rv64ud/fcmp.S diff --git a/src/asmtest/isa/rv64ud/fcvt.S b/src/examples/asmtest/isa/rv64ud/fcvt.S similarity index 100% rename from src/asmtest/isa/rv64ud/fcvt.S rename to src/examples/asmtest/isa/rv64ud/fcvt.S diff --git a/src/asmtest/isa/rv64ud/fcvt_w.S b/src/examples/asmtest/isa/rv64ud/fcvt_w.S similarity index 100% rename from src/asmtest/isa/rv64ud/fcvt_w.S rename to src/examples/asmtest/isa/rv64ud/fcvt_w.S diff --git a/src/asmtest/isa/rv64ud/fdiv.S b/src/examples/asmtest/isa/rv64ud/fdiv.S similarity index 100% rename from src/asmtest/isa/rv64ud/fdiv.S rename to src/examples/asmtest/isa/rv64ud/fdiv.S diff --git a/src/asmtest/isa/rv64ud/fmadd.S b/src/examples/asmtest/isa/rv64ud/fmadd.S similarity index 100% rename from src/asmtest/isa/rv64ud/fmadd.S rename to src/examples/asmtest/isa/rv64ud/fmadd.S diff --git a/src/asmtest/isa/rv64ud/fmin.S b/src/examples/asmtest/isa/rv64ud/fmin.S similarity index 100% rename from src/asmtest/isa/rv64ud/fmin.S rename to src/examples/asmtest/isa/rv64ud/fmin.S diff --git a/src/asmtest/isa/rv64ud/ldst.S b/src/examples/asmtest/isa/rv64ud/ldst.S similarity index 100% rename from src/asmtest/isa/rv64ud/ldst.S rename to src/examples/asmtest/isa/rv64ud/ldst.S diff --git a/src/asmtest/isa/rv64ud/move.S b/src/examples/asmtest/isa/rv64ud/move.S similarity index 100% rename from src/asmtest/isa/rv64ud/move.S rename to src/examples/asmtest/isa/rv64ud/move.S diff --git a/src/asmtest/isa/rv64ud/recoding.S b/src/examples/asmtest/isa/rv64ud/recoding.S similarity index 100% rename from src/asmtest/isa/rv64ud/recoding.S rename to src/examples/asmtest/isa/rv64ud/recoding.S diff --git a/src/asmtest/isa/rv64ud/structural.S b/src/examples/asmtest/isa/rv64ud/structural.S similarity index 100% rename from src/asmtest/isa/rv64ud/structural.S rename to src/examples/asmtest/isa/rv64ud/structural.S diff --git a/src/asmtest/isa/rv64uf/Makefrag b/src/examples/asmtest/isa/rv64uf/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uf/Makefrag rename to src/examples/asmtest/isa/rv64uf/Makefrag diff --git a/src/asmtest/isa/rv64uf/fadd.S b/src/examples/asmtest/isa/rv64uf/fadd.S similarity index 100% rename from src/asmtest/isa/rv64uf/fadd.S rename to src/examples/asmtest/isa/rv64uf/fadd.S diff --git a/src/asmtest/isa/rv64uf/fclass.S b/src/examples/asmtest/isa/rv64uf/fclass.S similarity index 100% rename from src/asmtest/isa/rv64uf/fclass.S rename to src/examples/asmtest/isa/rv64uf/fclass.S diff --git a/src/asmtest/isa/rv64uf/fcmp.S b/src/examples/asmtest/isa/rv64uf/fcmp.S similarity index 100% rename from src/asmtest/isa/rv64uf/fcmp.S rename to src/examples/asmtest/isa/rv64uf/fcmp.S diff --git a/src/asmtest/isa/rv64uf/fcvt.S b/src/examples/asmtest/isa/rv64uf/fcvt.S similarity index 100% rename from src/asmtest/isa/rv64uf/fcvt.S rename to src/examples/asmtest/isa/rv64uf/fcvt.S diff --git a/src/asmtest/isa/rv64uf/fcvt_w.S b/src/examples/asmtest/isa/rv64uf/fcvt_w.S similarity index 100% rename from src/asmtest/isa/rv64uf/fcvt_w.S rename to src/examples/asmtest/isa/rv64uf/fcvt_w.S diff --git a/src/asmtest/isa/rv64uf/fdiv.S b/src/examples/asmtest/isa/rv64uf/fdiv.S similarity index 100% rename from src/asmtest/isa/rv64uf/fdiv.S rename to src/examples/asmtest/isa/rv64uf/fdiv.S diff --git a/src/asmtest/isa/rv64uf/fmadd.S b/src/examples/asmtest/isa/rv64uf/fmadd.S similarity index 100% rename from src/asmtest/isa/rv64uf/fmadd.S rename to src/examples/asmtest/isa/rv64uf/fmadd.S diff --git a/src/asmtest/isa/rv64uf/fmin.S b/src/examples/asmtest/isa/rv64uf/fmin.S similarity index 100% rename from src/asmtest/isa/rv64uf/fmin.S rename to src/examples/asmtest/isa/rv64uf/fmin.S diff --git a/src/asmtest/isa/rv64uf/ldst.S b/src/examples/asmtest/isa/rv64uf/ldst.S similarity index 100% rename from src/asmtest/isa/rv64uf/ldst.S rename to src/examples/asmtest/isa/rv64uf/ldst.S diff --git a/src/asmtest/isa/rv64uf/move.S b/src/examples/asmtest/isa/rv64uf/move.S similarity index 100% rename from src/asmtest/isa/rv64uf/move.S rename to src/examples/asmtest/isa/rv64uf/move.S diff --git a/src/asmtest/isa/rv64uf/recoding.S b/src/examples/asmtest/isa/rv64uf/recoding.S similarity index 100% rename from src/asmtest/isa/rv64uf/recoding.S rename to src/examples/asmtest/isa/rv64uf/recoding.S diff --git a/src/asmtest/isa/rv64ui/Makefrag b/src/examples/asmtest/isa/rv64ui/Makefrag similarity index 100% rename from src/asmtest/isa/rv64ui/Makefrag rename to src/examples/asmtest/isa/rv64ui/Makefrag diff --git a/src/asmtest/isa/rv64ui/add.S b/src/examples/asmtest/isa/rv64ui/add.S similarity index 100% rename from src/asmtest/isa/rv64ui/add.S rename to src/examples/asmtest/isa/rv64ui/add.S diff --git a/src/asmtest/isa/rv64ui/addi.S b/src/examples/asmtest/isa/rv64ui/addi.S similarity index 100% rename from src/asmtest/isa/rv64ui/addi.S rename to src/examples/asmtest/isa/rv64ui/addi.S diff --git a/src/asmtest/isa/rv64ui/addiw.S b/src/examples/asmtest/isa/rv64ui/addiw.S similarity index 100% rename from src/asmtest/isa/rv64ui/addiw.S rename to src/examples/asmtest/isa/rv64ui/addiw.S diff --git a/src/asmtest/isa/rv64ui/addw.S b/src/examples/asmtest/isa/rv64ui/addw.S similarity index 100% rename from src/asmtest/isa/rv64ui/addw.S rename to src/examples/asmtest/isa/rv64ui/addw.S diff --git a/src/asmtest/isa/rv64ui/and.S b/src/examples/asmtest/isa/rv64ui/and.S similarity index 100% rename from src/asmtest/isa/rv64ui/and.S rename to src/examples/asmtest/isa/rv64ui/and.S diff --git a/src/asmtest/isa/rv64ui/andi.S b/src/examples/asmtest/isa/rv64ui/andi.S similarity index 100% rename from src/asmtest/isa/rv64ui/andi.S rename to src/examples/asmtest/isa/rv64ui/andi.S diff --git a/src/asmtest/isa/rv64ui/auipc.S b/src/examples/asmtest/isa/rv64ui/auipc.S similarity index 100% rename from src/asmtest/isa/rv64ui/auipc.S rename to src/examples/asmtest/isa/rv64ui/auipc.S diff --git a/src/asmtest/isa/rv64ui/beq.S b/src/examples/asmtest/isa/rv64ui/beq.S similarity index 100% rename from src/asmtest/isa/rv64ui/beq.S rename to src/examples/asmtest/isa/rv64ui/beq.S diff --git a/src/asmtest/isa/rv64ui/bge.S b/src/examples/asmtest/isa/rv64ui/bge.S similarity index 100% rename from src/asmtest/isa/rv64ui/bge.S rename to src/examples/asmtest/isa/rv64ui/bge.S diff --git a/src/asmtest/isa/rv64ui/bgeu.S b/src/examples/asmtest/isa/rv64ui/bgeu.S similarity index 100% rename from src/asmtest/isa/rv64ui/bgeu.S rename to src/examples/asmtest/isa/rv64ui/bgeu.S diff --git a/src/asmtest/isa/rv64ui/blt.S b/src/examples/asmtest/isa/rv64ui/blt.S similarity index 100% rename from src/asmtest/isa/rv64ui/blt.S rename to src/examples/asmtest/isa/rv64ui/blt.S diff --git a/src/asmtest/isa/rv64ui/bltu.S b/src/examples/asmtest/isa/rv64ui/bltu.S similarity index 100% rename from src/asmtest/isa/rv64ui/bltu.S rename to src/examples/asmtest/isa/rv64ui/bltu.S diff --git a/src/asmtest/isa/rv64ui/bne.S b/src/examples/asmtest/isa/rv64ui/bne.S similarity index 100% rename from src/asmtest/isa/rv64ui/bne.S rename to src/examples/asmtest/isa/rv64ui/bne.S diff --git a/src/asmtest/isa/rv64ui/fence_i.S b/src/examples/asmtest/isa/rv64ui/fence_i.S similarity index 100% rename from src/asmtest/isa/rv64ui/fence_i.S rename to src/examples/asmtest/isa/rv64ui/fence_i.S diff --git a/src/asmtest/isa/rv64ui/jal.S b/src/examples/asmtest/isa/rv64ui/jal.S similarity index 100% rename from src/asmtest/isa/rv64ui/jal.S rename to src/examples/asmtest/isa/rv64ui/jal.S diff --git a/src/asmtest/isa/rv64ui/jalr.S b/src/examples/asmtest/isa/rv64ui/jalr.S similarity index 100% rename from src/asmtest/isa/rv64ui/jalr.S rename to src/examples/asmtest/isa/rv64ui/jalr.S diff --git a/src/asmtest/isa/rv64ui/lb.S b/src/examples/asmtest/isa/rv64ui/lb.S similarity index 100% rename from src/asmtest/isa/rv64ui/lb.S rename to src/examples/asmtest/isa/rv64ui/lb.S diff --git a/src/asmtest/isa/rv64ui/lbu.S b/src/examples/asmtest/isa/rv64ui/lbu.S similarity index 100% rename from src/asmtest/isa/rv64ui/lbu.S rename to src/examples/asmtest/isa/rv64ui/lbu.S diff --git a/src/asmtest/isa/rv64ui/ld.S b/src/examples/asmtest/isa/rv64ui/ld.S similarity index 100% rename from src/asmtest/isa/rv64ui/ld.S rename to src/examples/asmtest/isa/rv64ui/ld.S diff --git a/src/asmtest/isa/rv64ui/lh.S b/src/examples/asmtest/isa/rv64ui/lh.S similarity index 100% rename from src/asmtest/isa/rv64ui/lh.S rename to src/examples/asmtest/isa/rv64ui/lh.S diff --git a/src/asmtest/isa/rv64ui/lhu.S b/src/examples/asmtest/isa/rv64ui/lhu.S similarity index 100% rename from src/asmtest/isa/rv64ui/lhu.S rename to src/examples/asmtest/isa/rv64ui/lhu.S diff --git a/src/asmtest/isa/rv64ui/lui.S b/src/examples/asmtest/isa/rv64ui/lui.S similarity index 100% rename from src/asmtest/isa/rv64ui/lui.S rename to src/examples/asmtest/isa/rv64ui/lui.S diff --git a/src/asmtest/isa/rv64ui/lw.S b/src/examples/asmtest/isa/rv64ui/lw.S similarity index 100% rename from src/asmtest/isa/rv64ui/lw.S rename to src/examples/asmtest/isa/rv64ui/lw.S diff --git a/src/asmtest/isa/rv64ui/lwu.S b/src/examples/asmtest/isa/rv64ui/lwu.S similarity index 100% rename from src/asmtest/isa/rv64ui/lwu.S rename to src/examples/asmtest/isa/rv64ui/lwu.S diff --git a/src/asmtest/isa/rv64ui/ma_data.S b/src/examples/asmtest/isa/rv64ui/ma_data.S similarity index 100% rename from src/asmtest/isa/rv64ui/ma_data.S rename to src/examples/asmtest/isa/rv64ui/ma_data.S diff --git a/src/asmtest/isa/rv64ui/or.S b/src/examples/asmtest/isa/rv64ui/or.S similarity index 100% rename from src/asmtest/isa/rv64ui/or.S rename to src/examples/asmtest/isa/rv64ui/or.S diff --git a/src/asmtest/isa/rv64ui/ori.S b/src/examples/asmtest/isa/rv64ui/ori.S similarity index 100% rename from src/asmtest/isa/rv64ui/ori.S rename to src/examples/asmtest/isa/rv64ui/ori.S diff --git a/src/asmtest/isa/rv64ui/sb.S b/src/examples/asmtest/isa/rv64ui/sb.S similarity index 100% rename from src/asmtest/isa/rv64ui/sb.S rename to src/examples/asmtest/isa/rv64ui/sb.S diff --git a/src/asmtest/isa/rv64ui/sd.S b/src/examples/asmtest/isa/rv64ui/sd.S similarity index 100% rename from src/asmtest/isa/rv64ui/sd.S rename to src/examples/asmtest/isa/rv64ui/sd.S diff --git a/src/asmtest/isa/rv64ui/sh.S b/src/examples/asmtest/isa/rv64ui/sh.S similarity index 100% rename from src/asmtest/isa/rv64ui/sh.S rename to src/examples/asmtest/isa/rv64ui/sh.S diff --git a/src/asmtest/isa/rv64ui/simple.S b/src/examples/asmtest/isa/rv64ui/simple.S similarity index 100% rename from src/asmtest/isa/rv64ui/simple.S rename to src/examples/asmtest/isa/rv64ui/simple.S diff --git a/src/asmtest/isa/rv64ui/sll.S b/src/examples/asmtest/isa/rv64ui/sll.S similarity index 100% rename from src/asmtest/isa/rv64ui/sll.S rename to src/examples/asmtest/isa/rv64ui/sll.S diff --git a/src/asmtest/isa/rv64ui/slli.S b/src/examples/asmtest/isa/rv64ui/slli.S similarity index 100% rename from src/asmtest/isa/rv64ui/slli.S rename to src/examples/asmtest/isa/rv64ui/slli.S diff --git a/src/asmtest/isa/rv64ui/slliw.S b/src/examples/asmtest/isa/rv64ui/slliw.S similarity index 100% rename from src/asmtest/isa/rv64ui/slliw.S rename to src/examples/asmtest/isa/rv64ui/slliw.S diff --git a/src/asmtest/isa/rv64ui/sllw.S b/src/examples/asmtest/isa/rv64ui/sllw.S similarity index 100% rename from src/asmtest/isa/rv64ui/sllw.S rename to src/examples/asmtest/isa/rv64ui/sllw.S diff --git a/src/asmtest/isa/rv64ui/slt.S b/src/examples/asmtest/isa/rv64ui/slt.S similarity index 100% rename from src/asmtest/isa/rv64ui/slt.S rename to src/examples/asmtest/isa/rv64ui/slt.S diff --git a/src/asmtest/isa/rv64ui/slti.S b/src/examples/asmtest/isa/rv64ui/slti.S similarity index 100% rename from src/asmtest/isa/rv64ui/slti.S rename to src/examples/asmtest/isa/rv64ui/slti.S diff --git a/src/asmtest/isa/rv64ui/sltiu.S b/src/examples/asmtest/isa/rv64ui/sltiu.S similarity index 100% rename from src/asmtest/isa/rv64ui/sltiu.S rename to src/examples/asmtest/isa/rv64ui/sltiu.S diff --git a/src/asmtest/isa/rv64ui/sltu.S b/src/examples/asmtest/isa/rv64ui/sltu.S similarity index 100% rename from src/asmtest/isa/rv64ui/sltu.S rename to src/examples/asmtest/isa/rv64ui/sltu.S diff --git a/src/asmtest/isa/rv64ui/sra.S b/src/examples/asmtest/isa/rv64ui/sra.S similarity index 100% rename from src/asmtest/isa/rv64ui/sra.S rename to src/examples/asmtest/isa/rv64ui/sra.S diff --git a/src/asmtest/isa/rv64ui/srai.S b/src/examples/asmtest/isa/rv64ui/srai.S similarity index 100% rename from src/asmtest/isa/rv64ui/srai.S rename to src/examples/asmtest/isa/rv64ui/srai.S diff --git a/src/asmtest/isa/rv64ui/sraiw.S b/src/examples/asmtest/isa/rv64ui/sraiw.S similarity index 100% rename from src/asmtest/isa/rv64ui/sraiw.S rename to src/examples/asmtest/isa/rv64ui/sraiw.S diff --git a/src/asmtest/isa/rv64ui/sraw.S b/src/examples/asmtest/isa/rv64ui/sraw.S similarity index 100% rename from src/asmtest/isa/rv64ui/sraw.S rename to src/examples/asmtest/isa/rv64ui/sraw.S diff --git a/src/asmtest/isa/rv64ui/srl.S b/src/examples/asmtest/isa/rv64ui/srl.S similarity index 100% rename from src/asmtest/isa/rv64ui/srl.S rename to src/examples/asmtest/isa/rv64ui/srl.S diff --git a/src/asmtest/isa/rv64ui/srli.S b/src/examples/asmtest/isa/rv64ui/srli.S similarity index 100% rename from src/asmtest/isa/rv64ui/srli.S rename to src/examples/asmtest/isa/rv64ui/srli.S diff --git a/src/asmtest/isa/rv64ui/srliw.S b/src/examples/asmtest/isa/rv64ui/srliw.S similarity index 100% rename from src/asmtest/isa/rv64ui/srliw.S rename to src/examples/asmtest/isa/rv64ui/srliw.S diff --git a/src/asmtest/isa/rv64ui/srlw.S b/src/examples/asmtest/isa/rv64ui/srlw.S similarity index 100% rename from src/asmtest/isa/rv64ui/srlw.S rename to src/examples/asmtest/isa/rv64ui/srlw.S diff --git a/src/asmtest/isa/rv64ui/sub.S b/src/examples/asmtest/isa/rv64ui/sub.S similarity index 100% rename from src/asmtest/isa/rv64ui/sub.S rename to src/examples/asmtest/isa/rv64ui/sub.S diff --git a/src/asmtest/isa/rv64ui/subw.S b/src/examples/asmtest/isa/rv64ui/subw.S similarity index 100% rename from src/asmtest/isa/rv64ui/subw.S rename to src/examples/asmtest/isa/rv64ui/subw.S diff --git a/src/asmtest/isa/rv64ui/sw.S b/src/examples/asmtest/isa/rv64ui/sw.S similarity index 100% rename from src/asmtest/isa/rv64ui/sw.S rename to src/examples/asmtest/isa/rv64ui/sw.S diff --git a/src/asmtest/isa/rv64ui/xor.S b/src/examples/asmtest/isa/rv64ui/xor.S similarity index 100% rename from src/asmtest/isa/rv64ui/xor.S rename to src/examples/asmtest/isa/rv64ui/xor.S diff --git a/src/asmtest/isa/rv64ui/xori.S b/src/examples/asmtest/isa/rv64ui/xori.S similarity index 100% rename from src/asmtest/isa/rv64ui/xori.S rename to src/examples/asmtest/isa/rv64ui/xori.S diff --git a/src/asmtest/isa/rv64um/Makefrag b/src/examples/asmtest/isa/rv64um/Makefrag similarity index 100% rename from src/asmtest/isa/rv64um/Makefrag rename to src/examples/asmtest/isa/rv64um/Makefrag diff --git a/src/asmtest/isa/rv64um/div.S b/src/examples/asmtest/isa/rv64um/div.S similarity index 100% rename from src/asmtest/isa/rv64um/div.S rename to src/examples/asmtest/isa/rv64um/div.S diff --git a/src/asmtest/isa/rv64um/divu.S b/src/examples/asmtest/isa/rv64um/divu.S similarity index 100% rename from src/asmtest/isa/rv64um/divu.S rename to src/examples/asmtest/isa/rv64um/divu.S diff --git a/src/asmtest/isa/rv64um/divuw.S b/src/examples/asmtest/isa/rv64um/divuw.S similarity index 100% rename from src/asmtest/isa/rv64um/divuw.S rename to src/examples/asmtest/isa/rv64um/divuw.S diff --git a/src/asmtest/isa/rv64um/divw.S b/src/examples/asmtest/isa/rv64um/divw.S similarity index 100% rename from src/asmtest/isa/rv64um/divw.S rename to src/examples/asmtest/isa/rv64um/divw.S diff --git a/src/asmtest/isa/rv64um/mul.S b/src/examples/asmtest/isa/rv64um/mul.S similarity index 100% rename from src/asmtest/isa/rv64um/mul.S rename to src/examples/asmtest/isa/rv64um/mul.S diff --git a/src/asmtest/isa/rv64um/mulh.S b/src/examples/asmtest/isa/rv64um/mulh.S similarity index 100% rename from src/asmtest/isa/rv64um/mulh.S rename to src/examples/asmtest/isa/rv64um/mulh.S diff --git a/src/asmtest/isa/rv64um/mulhsu.S b/src/examples/asmtest/isa/rv64um/mulhsu.S similarity index 100% rename from src/asmtest/isa/rv64um/mulhsu.S rename to src/examples/asmtest/isa/rv64um/mulhsu.S diff --git a/src/asmtest/isa/rv64um/mulhu.S b/src/examples/asmtest/isa/rv64um/mulhu.S similarity index 100% rename from src/asmtest/isa/rv64um/mulhu.S rename to src/examples/asmtest/isa/rv64um/mulhu.S diff --git a/src/asmtest/isa/rv64um/mulw.S b/src/examples/asmtest/isa/rv64um/mulw.S similarity index 100% rename from src/asmtest/isa/rv64um/mulw.S rename to src/examples/asmtest/isa/rv64um/mulw.S diff --git a/src/asmtest/isa/rv64um/rem.S b/src/examples/asmtest/isa/rv64um/rem.S similarity index 100% rename from src/asmtest/isa/rv64um/rem.S rename to src/examples/asmtest/isa/rv64um/rem.S diff --git a/src/asmtest/isa/rv64um/remu.S b/src/examples/asmtest/isa/rv64um/remu.S similarity index 100% rename from src/asmtest/isa/rv64um/remu.S rename to src/examples/asmtest/isa/rv64um/remu.S diff --git a/src/asmtest/isa/rv64um/remuw.S b/src/examples/asmtest/isa/rv64um/remuw.S similarity index 100% rename from src/asmtest/isa/rv64um/remuw.S rename to src/examples/asmtest/isa/rv64um/remuw.S diff --git a/src/asmtest/isa/rv64um/remw.S b/src/examples/asmtest/isa/rv64um/remw.S similarity index 100% rename from src/asmtest/isa/rv64um/remw.S rename to src/examples/asmtest/isa/rv64um/remw.S diff --git a/src/asmtest/isa/rv64uzba/Makefrag b/src/examples/asmtest/isa/rv64uzba/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uzba/Makefrag rename to src/examples/asmtest/isa/rv64uzba/Makefrag diff --git a/src/asmtest/isa/rv64uzba/add_uw.S b/src/examples/asmtest/isa/rv64uzba/add_uw.S similarity index 100% rename from src/asmtest/isa/rv64uzba/add_uw.S rename to src/examples/asmtest/isa/rv64uzba/add_uw.S diff --git a/src/asmtest/isa/rv64uzba/sh1add.S b/src/examples/asmtest/isa/rv64uzba/sh1add.S similarity index 100% rename from src/asmtest/isa/rv64uzba/sh1add.S rename to src/examples/asmtest/isa/rv64uzba/sh1add.S diff --git a/src/asmtest/isa/rv64uzba/sh1add_uw.S b/src/examples/asmtest/isa/rv64uzba/sh1add_uw.S similarity index 100% rename from src/asmtest/isa/rv64uzba/sh1add_uw.S rename to src/examples/asmtest/isa/rv64uzba/sh1add_uw.S diff --git a/src/asmtest/isa/rv64uzba/sh2add.S b/src/examples/asmtest/isa/rv64uzba/sh2add.S similarity index 100% rename from src/asmtest/isa/rv64uzba/sh2add.S rename to src/examples/asmtest/isa/rv64uzba/sh2add.S diff --git a/src/asmtest/isa/rv64uzba/sh2add_uw.S b/src/examples/asmtest/isa/rv64uzba/sh2add_uw.S similarity index 100% rename from src/asmtest/isa/rv64uzba/sh2add_uw.S rename to src/examples/asmtest/isa/rv64uzba/sh2add_uw.S diff --git a/src/asmtest/isa/rv64uzba/sh3add.S b/src/examples/asmtest/isa/rv64uzba/sh3add.S similarity index 100% rename from src/asmtest/isa/rv64uzba/sh3add.S rename to src/examples/asmtest/isa/rv64uzba/sh3add.S diff --git a/src/asmtest/isa/rv64uzba/sh3add_uw.S b/src/examples/asmtest/isa/rv64uzba/sh3add_uw.S similarity index 100% rename from src/asmtest/isa/rv64uzba/sh3add_uw.S rename to src/examples/asmtest/isa/rv64uzba/sh3add_uw.S diff --git a/src/asmtest/isa/rv64uzba/slli_uw.S b/src/examples/asmtest/isa/rv64uzba/slli_uw.S similarity index 100% rename from src/asmtest/isa/rv64uzba/slli_uw.S rename to src/examples/asmtest/isa/rv64uzba/slli_uw.S diff --git a/src/asmtest/isa/rv64uzbb/Makefrag b/src/examples/asmtest/isa/rv64uzbb/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uzbb/Makefrag rename to src/examples/asmtest/isa/rv64uzbb/Makefrag diff --git a/src/asmtest/isa/rv64uzbb/andn.S b/src/examples/asmtest/isa/rv64uzbb/andn.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/andn.S rename to src/examples/asmtest/isa/rv64uzbb/andn.S diff --git a/src/asmtest/isa/rv64uzbb/clz.S b/src/examples/asmtest/isa/rv64uzbb/clz.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/clz.S rename to src/examples/asmtest/isa/rv64uzbb/clz.S diff --git a/src/asmtest/isa/rv64uzbb/clzw.S b/src/examples/asmtest/isa/rv64uzbb/clzw.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/clzw.S rename to src/examples/asmtest/isa/rv64uzbb/clzw.S diff --git a/src/asmtest/isa/rv64uzbb/cpop.S b/src/examples/asmtest/isa/rv64uzbb/cpop.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/cpop.S rename to src/examples/asmtest/isa/rv64uzbb/cpop.S diff --git a/src/asmtest/isa/rv64uzbb/cpopw.S b/src/examples/asmtest/isa/rv64uzbb/cpopw.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/cpopw.S rename to src/examples/asmtest/isa/rv64uzbb/cpopw.S diff --git a/src/asmtest/isa/rv64uzbb/ctz.S b/src/examples/asmtest/isa/rv64uzbb/ctz.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/ctz.S rename to src/examples/asmtest/isa/rv64uzbb/ctz.S diff --git a/src/asmtest/isa/rv64uzbb/ctzw.S b/src/examples/asmtest/isa/rv64uzbb/ctzw.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/ctzw.S rename to src/examples/asmtest/isa/rv64uzbb/ctzw.S diff --git a/src/asmtest/isa/rv64uzbb/max.S b/src/examples/asmtest/isa/rv64uzbb/max.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/max.S rename to src/examples/asmtest/isa/rv64uzbb/max.S diff --git a/src/asmtest/isa/rv64uzbb/maxu.S b/src/examples/asmtest/isa/rv64uzbb/maxu.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/maxu.S rename to src/examples/asmtest/isa/rv64uzbb/maxu.S diff --git a/src/asmtest/isa/rv64uzbb/min.S b/src/examples/asmtest/isa/rv64uzbb/min.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/min.S rename to src/examples/asmtest/isa/rv64uzbb/min.S diff --git a/src/asmtest/isa/rv64uzbb/minu.S b/src/examples/asmtest/isa/rv64uzbb/minu.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/minu.S rename to src/examples/asmtest/isa/rv64uzbb/minu.S diff --git a/src/asmtest/isa/rv64uzbb/orc_b.S b/src/examples/asmtest/isa/rv64uzbb/orc_b.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/orc_b.S rename to src/examples/asmtest/isa/rv64uzbb/orc_b.S diff --git a/src/asmtest/isa/rv64uzbb/orn.S b/src/examples/asmtest/isa/rv64uzbb/orn.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/orn.S rename to src/examples/asmtest/isa/rv64uzbb/orn.S diff --git a/src/asmtest/isa/rv64uzbb/rev8.S b/src/examples/asmtest/isa/rv64uzbb/rev8.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/rev8.S rename to src/examples/asmtest/isa/rv64uzbb/rev8.S diff --git a/src/asmtest/isa/rv64uzbb/rol.S b/src/examples/asmtest/isa/rv64uzbb/rol.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/rol.S rename to src/examples/asmtest/isa/rv64uzbb/rol.S diff --git a/src/asmtest/isa/rv64uzbb/rolw.S b/src/examples/asmtest/isa/rv64uzbb/rolw.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/rolw.S rename to src/examples/asmtest/isa/rv64uzbb/rolw.S diff --git a/src/asmtest/isa/rv64uzbb/ror.S b/src/examples/asmtest/isa/rv64uzbb/ror.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/ror.S rename to src/examples/asmtest/isa/rv64uzbb/ror.S diff --git a/src/asmtest/isa/rv64uzbb/rori.S b/src/examples/asmtest/isa/rv64uzbb/rori.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/rori.S rename to src/examples/asmtest/isa/rv64uzbb/rori.S diff --git a/src/asmtest/isa/rv64uzbb/roriw.S b/src/examples/asmtest/isa/rv64uzbb/roriw.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/roriw.S rename to src/examples/asmtest/isa/rv64uzbb/roriw.S diff --git a/src/asmtest/isa/rv64uzbb/rorw.S b/src/examples/asmtest/isa/rv64uzbb/rorw.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/rorw.S rename to src/examples/asmtest/isa/rv64uzbb/rorw.S diff --git a/src/asmtest/isa/rv64uzbb/sext_b.S b/src/examples/asmtest/isa/rv64uzbb/sext_b.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/sext_b.S rename to src/examples/asmtest/isa/rv64uzbb/sext_b.S diff --git a/src/asmtest/isa/rv64uzbb/sext_h.S b/src/examples/asmtest/isa/rv64uzbb/sext_h.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/sext_h.S rename to src/examples/asmtest/isa/rv64uzbb/sext_h.S diff --git a/src/asmtest/isa/rv64uzbb/xnor.S b/src/examples/asmtest/isa/rv64uzbb/xnor.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/xnor.S rename to src/examples/asmtest/isa/rv64uzbb/xnor.S diff --git a/src/asmtest/isa/rv64uzbb/zext_h.S b/src/examples/asmtest/isa/rv64uzbb/zext_h.S similarity index 100% rename from src/asmtest/isa/rv64uzbb/zext_h.S rename to src/examples/asmtest/isa/rv64uzbb/zext_h.S diff --git a/src/asmtest/isa/rv64uzbc/Makefrag b/src/examples/asmtest/isa/rv64uzbc/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uzbc/Makefrag rename to src/examples/asmtest/isa/rv64uzbc/Makefrag diff --git a/src/asmtest/isa/rv64uzbc/clmul.S b/src/examples/asmtest/isa/rv64uzbc/clmul.S similarity index 100% rename from src/asmtest/isa/rv64uzbc/clmul.S rename to src/examples/asmtest/isa/rv64uzbc/clmul.S diff --git a/src/asmtest/isa/rv64uzbc/clmulh.S b/src/examples/asmtest/isa/rv64uzbc/clmulh.S similarity index 100% rename from src/asmtest/isa/rv64uzbc/clmulh.S rename to src/examples/asmtest/isa/rv64uzbc/clmulh.S diff --git a/src/asmtest/isa/rv64uzbc/clmulr.S b/src/examples/asmtest/isa/rv64uzbc/clmulr.S similarity index 100% rename from src/asmtest/isa/rv64uzbc/clmulr.S rename to src/examples/asmtest/isa/rv64uzbc/clmulr.S diff --git a/src/asmtest/isa/rv64uzbs/Makefrag b/src/examples/asmtest/isa/rv64uzbs/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uzbs/Makefrag rename to src/examples/asmtest/isa/rv64uzbs/Makefrag diff --git a/src/asmtest/isa/rv64uzbs/bclr.S b/src/examples/asmtest/isa/rv64uzbs/bclr.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/bclr.S rename to src/examples/asmtest/isa/rv64uzbs/bclr.S diff --git a/src/asmtest/isa/rv64uzbs/bclri.S b/src/examples/asmtest/isa/rv64uzbs/bclri.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/bclri.S rename to src/examples/asmtest/isa/rv64uzbs/bclri.S diff --git a/src/asmtest/isa/rv64uzbs/bext.S b/src/examples/asmtest/isa/rv64uzbs/bext.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/bext.S rename to src/examples/asmtest/isa/rv64uzbs/bext.S diff --git a/src/asmtest/isa/rv64uzbs/bexti.S b/src/examples/asmtest/isa/rv64uzbs/bexti.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/bexti.S rename to src/examples/asmtest/isa/rv64uzbs/bexti.S diff --git a/src/asmtest/isa/rv64uzbs/binv.S b/src/examples/asmtest/isa/rv64uzbs/binv.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/binv.S rename to src/examples/asmtest/isa/rv64uzbs/binv.S diff --git a/src/asmtest/isa/rv64uzbs/binvi.S b/src/examples/asmtest/isa/rv64uzbs/binvi.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/binvi.S rename to src/examples/asmtest/isa/rv64uzbs/binvi.S diff --git a/src/asmtest/isa/rv64uzbs/bset.S b/src/examples/asmtest/isa/rv64uzbs/bset.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/bset.S rename to src/examples/asmtest/isa/rv64uzbs/bset.S diff --git a/src/asmtest/isa/rv64uzbs/bseti.S b/src/examples/asmtest/isa/rv64uzbs/bseti.S similarity index 100% rename from src/asmtest/isa/rv64uzbs/bseti.S rename to src/examples/asmtest/isa/rv64uzbs/bseti.S diff --git a/src/asmtest/isa/rv64uzfh/Makefrag b/src/examples/asmtest/isa/rv64uzfh/Makefrag similarity index 100% rename from src/asmtest/isa/rv64uzfh/Makefrag rename to src/examples/asmtest/isa/rv64uzfh/Makefrag diff --git a/src/asmtest/isa/rv64uzfh/fadd.S b/src/examples/asmtest/isa/rv64uzfh/fadd.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fadd.S rename to src/examples/asmtest/isa/rv64uzfh/fadd.S diff --git a/src/asmtest/isa/rv64uzfh/fclass.S b/src/examples/asmtest/isa/rv64uzfh/fclass.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fclass.S rename to src/examples/asmtest/isa/rv64uzfh/fclass.S diff --git a/src/asmtest/isa/rv64uzfh/fcmp.S b/src/examples/asmtest/isa/rv64uzfh/fcmp.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fcmp.S rename to src/examples/asmtest/isa/rv64uzfh/fcmp.S diff --git a/src/asmtest/isa/rv64uzfh/fcvt.S b/src/examples/asmtest/isa/rv64uzfh/fcvt.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fcvt.S rename to src/examples/asmtest/isa/rv64uzfh/fcvt.S diff --git a/src/asmtest/isa/rv64uzfh/fcvt_w.S b/src/examples/asmtest/isa/rv64uzfh/fcvt_w.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fcvt_w.S rename to src/examples/asmtest/isa/rv64uzfh/fcvt_w.S diff --git a/src/asmtest/isa/rv64uzfh/fdiv.S b/src/examples/asmtest/isa/rv64uzfh/fdiv.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fdiv.S rename to src/examples/asmtest/isa/rv64uzfh/fdiv.S diff --git a/src/asmtest/isa/rv64uzfh/fmadd.S b/src/examples/asmtest/isa/rv64uzfh/fmadd.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fmadd.S rename to src/examples/asmtest/isa/rv64uzfh/fmadd.S diff --git a/src/asmtest/isa/rv64uzfh/fmin.S b/src/examples/asmtest/isa/rv64uzfh/fmin.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/fmin.S rename to src/examples/asmtest/isa/rv64uzfh/fmin.S diff --git a/src/asmtest/isa/rv64uzfh/ldst.S b/src/examples/asmtest/isa/rv64uzfh/ldst.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/ldst.S rename to src/examples/asmtest/isa/rv64uzfh/ldst.S diff --git a/src/asmtest/isa/rv64uzfh/move.S b/src/examples/asmtest/isa/rv64uzfh/move.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/move.S rename to src/examples/asmtest/isa/rv64uzfh/move.S diff --git a/src/asmtest/isa/rv64uzfh/recoding.S b/src/examples/asmtest/isa/rv64uzfh/recoding.S similarity index 100% rename from src/asmtest/isa/rv64uzfh/recoding.S rename to src/examples/asmtest/isa/rv64uzfh/recoding.S diff --git a/src/asmtest/mt/.gitignore b/src/examples/asmtest/mt/.gitignore similarity index 100% rename from src/asmtest/mt/.gitignore rename to src/examples/asmtest/mt/.gitignore diff --git a/src/asmtest/mt/Makefile b/src/examples/asmtest/mt/Makefile similarity index 100% rename from src/asmtest/mt/Makefile rename to src/examples/asmtest/mt/Makefile diff --git a/src/asmtest/mt/ad_matmul.c b/src/examples/asmtest/mt/ad_matmul.c similarity index 100% rename from src/asmtest/mt/ad_matmul.c rename to src/examples/asmtest/mt/ad_matmul.c diff --git a/src/asmtest/mt/ae_matmul.c b/src/examples/asmtest/mt/ae_matmul.c similarity index 100% rename from src/asmtest/mt/ae_matmul.c rename to src/examples/asmtest/mt/ae_matmul.c diff --git a/src/asmtest/mt/af_matmul.c b/src/examples/asmtest/mt/af_matmul.c similarity index 100% rename from src/asmtest/mt/af_matmul.c rename to src/examples/asmtest/mt/af_matmul.c diff --git a/src/asmtest/mt/ag_matmul.c b/src/examples/asmtest/mt/ag_matmul.c similarity index 100% rename from src/asmtest/mt/ag_matmul.c rename to src/examples/asmtest/mt/ag_matmul.c diff --git a/src/asmtest/mt/ai_matmul.c b/src/examples/asmtest/mt/ai_matmul.c similarity index 100% rename from src/asmtest/mt/ai_matmul.c rename to src/examples/asmtest/mt/ai_matmul.c diff --git a/src/asmtest/mt/ak_matmul.c b/src/examples/asmtest/mt/ak_matmul.c similarity index 100% rename from src/asmtest/mt/ak_matmul.c rename to src/examples/asmtest/mt/ak_matmul.c diff --git a/src/asmtest/mt/al_matmul.c b/src/examples/asmtest/mt/al_matmul.c similarity index 100% rename from src/asmtest/mt/al_matmul.c rename to src/examples/asmtest/mt/al_matmul.c diff --git a/src/asmtest/mt/am_matmul.c b/src/examples/asmtest/mt/am_matmul.c similarity index 100% rename from src/asmtest/mt/am_matmul.c rename to src/examples/asmtest/mt/am_matmul.c diff --git a/src/asmtest/mt/an_matmul.c b/src/examples/asmtest/mt/an_matmul.c similarity index 100% rename from src/asmtest/mt/an_matmul.c rename to src/examples/asmtest/mt/an_matmul.c diff --git a/src/asmtest/mt/ap_matmul.c b/src/examples/asmtest/mt/ap_matmul.c similarity index 100% rename from src/asmtest/mt/ap_matmul.c rename to src/examples/asmtest/mt/ap_matmul.c diff --git a/src/asmtest/mt/aq_matmul.c b/src/examples/asmtest/mt/aq_matmul.c similarity index 100% rename from src/asmtest/mt/aq_matmul.c rename to src/examples/asmtest/mt/aq_matmul.c diff --git a/src/asmtest/mt/ar_matmul.c b/src/examples/asmtest/mt/ar_matmul.c similarity index 100% rename from src/asmtest/mt/ar_matmul.c rename to src/examples/asmtest/mt/ar_matmul.c diff --git a/src/asmtest/mt/at_matmul.c b/src/examples/asmtest/mt/at_matmul.c similarity index 100% rename from src/asmtest/mt/at_matmul.c rename to src/examples/asmtest/mt/at_matmul.c diff --git a/src/asmtest/mt/av_matmul.c b/src/examples/asmtest/mt/av_matmul.c similarity index 100% rename from src/asmtest/mt/av_matmul.c rename to src/examples/asmtest/mt/av_matmul.c diff --git a/src/asmtest/mt/ay_matmul.c b/src/examples/asmtest/mt/ay_matmul.c similarity index 100% rename from src/asmtest/mt/ay_matmul.c rename to src/examples/asmtest/mt/ay_matmul.c diff --git a/src/asmtest/mt/az_matmul.c b/src/examples/asmtest/mt/az_matmul.c similarity index 100% rename from src/asmtest/mt/az_matmul.c rename to src/examples/asmtest/mt/az_matmul.c diff --git a/src/asmtest/mt/bb_matmul.c b/src/examples/asmtest/mt/bb_matmul.c similarity index 100% rename from src/asmtest/mt/bb_matmul.c rename to src/examples/asmtest/mt/bb_matmul.c diff --git a/src/asmtest/mt/bc_matmul.c b/src/examples/asmtest/mt/bc_matmul.c similarity index 100% rename from src/asmtest/mt/bc_matmul.c rename to src/examples/asmtest/mt/bc_matmul.c diff --git a/src/asmtest/mt/bf_matmul.c b/src/examples/asmtest/mt/bf_matmul.c similarity index 100% rename from src/asmtest/mt/bf_matmul.c rename to src/examples/asmtest/mt/bf_matmul.c diff --git a/src/asmtest/mt/bh_matmul.c b/src/examples/asmtest/mt/bh_matmul.c similarity index 100% rename from src/asmtest/mt/bh_matmul.c rename to src/examples/asmtest/mt/bh_matmul.c diff --git a/src/asmtest/mt/bj_matmul.c b/src/examples/asmtest/mt/bj_matmul.c similarity index 100% rename from src/asmtest/mt/bj_matmul.c rename to src/examples/asmtest/mt/bj_matmul.c diff --git a/src/asmtest/mt/bk_matmul.c b/src/examples/asmtest/mt/bk_matmul.c similarity index 100% rename from src/asmtest/mt/bk_matmul.c rename to src/examples/asmtest/mt/bk_matmul.c diff --git a/src/asmtest/mt/bm_matmul.c b/src/examples/asmtest/mt/bm_matmul.c similarity index 100% rename from src/asmtest/mt/bm_matmul.c rename to src/examples/asmtest/mt/bm_matmul.c diff --git a/src/asmtest/mt/bo_matmul.c b/src/examples/asmtest/mt/bo_matmul.c similarity index 100% rename from src/asmtest/mt/bo_matmul.c rename to src/examples/asmtest/mt/bo_matmul.c diff --git a/src/asmtest/mt/br_matmul.c b/src/examples/asmtest/mt/br_matmul.c similarity index 100% rename from src/asmtest/mt/br_matmul.c rename to src/examples/asmtest/mt/br_matmul.c diff --git a/src/asmtest/mt/bs_matmul.c b/src/examples/asmtest/mt/bs_matmul.c similarity index 100% rename from src/asmtest/mt/bs_matmul.c rename to src/examples/asmtest/mt/bs_matmul.c diff --git a/src/asmtest/mt/ce_matmul.c b/src/examples/asmtest/mt/ce_matmul.c similarity index 100% rename from src/asmtest/mt/ce_matmul.c rename to src/examples/asmtest/mt/ce_matmul.c diff --git a/src/asmtest/mt/cf_matmul.c b/src/examples/asmtest/mt/cf_matmul.c similarity index 100% rename from src/asmtest/mt/cf_matmul.c rename to src/examples/asmtest/mt/cf_matmul.c diff --git a/src/asmtest/mt/cg_matmul.c b/src/examples/asmtest/mt/cg_matmul.c similarity index 100% rename from src/asmtest/mt/cg_matmul.c rename to src/examples/asmtest/mt/cg_matmul.c diff --git a/src/asmtest/mt/ci_matmul.c b/src/examples/asmtest/mt/ci_matmul.c similarity index 100% rename from src/asmtest/mt/ci_matmul.c rename to src/examples/asmtest/mt/ci_matmul.c diff --git a/src/asmtest/mt/ck_matmul.c b/src/examples/asmtest/mt/ck_matmul.c similarity index 100% rename from src/asmtest/mt/ck_matmul.c rename to src/examples/asmtest/mt/ck_matmul.c diff --git a/src/asmtest/mt/cl_matmul.c b/src/examples/asmtest/mt/cl_matmul.c similarity index 100% rename from src/asmtest/mt/cl_matmul.c rename to src/examples/asmtest/mt/cl_matmul.c diff --git a/src/asmtest/mt/cm_matmul.c b/src/examples/asmtest/mt/cm_matmul.c similarity index 100% rename from src/asmtest/mt/cm_matmul.c rename to src/examples/asmtest/mt/cm_matmul.c diff --git a/src/asmtest/mt/cs_matmul.c b/src/examples/asmtest/mt/cs_matmul.c similarity index 100% rename from src/asmtest/mt/cs_matmul.c rename to src/examples/asmtest/mt/cs_matmul.c diff --git a/src/asmtest/mt/cv_matmul.c b/src/examples/asmtest/mt/cv_matmul.c similarity index 100% rename from src/asmtest/mt/cv_matmul.c rename to src/examples/asmtest/mt/cv_matmul.c diff --git a/src/asmtest/mt/cy_matmul.c b/src/examples/asmtest/mt/cy_matmul.c similarity index 100% rename from src/asmtest/mt/cy_matmul.c rename to src/examples/asmtest/mt/cy_matmul.c diff --git a/src/asmtest/mt/dc_matmul.c b/src/examples/asmtest/mt/dc_matmul.c similarity index 100% rename from src/asmtest/mt/dc_matmul.c rename to src/examples/asmtest/mt/dc_matmul.c diff --git a/src/asmtest/mt/df_matmul.c b/src/examples/asmtest/mt/df_matmul.c similarity index 100% rename from src/asmtest/mt/df_matmul.c rename to src/examples/asmtest/mt/df_matmul.c diff --git a/src/asmtest/mt/dm_matmul.c b/src/examples/asmtest/mt/dm_matmul.c similarity index 100% rename from src/asmtest/mt/dm_matmul.c rename to src/examples/asmtest/mt/dm_matmul.c diff --git a/src/asmtest/mt/do_matmul.c b/src/examples/asmtest/mt/do_matmul.c similarity index 100% rename from src/asmtest/mt/do_matmul.c rename to src/examples/asmtest/mt/do_matmul.c diff --git a/src/asmtest/mt/dr_matmul.c b/src/examples/asmtest/mt/dr_matmul.c similarity index 100% rename from src/asmtest/mt/dr_matmul.c rename to src/examples/asmtest/mt/dr_matmul.c diff --git a/src/asmtest/mt/ds_matmul.c b/src/examples/asmtest/mt/ds_matmul.c similarity index 100% rename from src/asmtest/mt/ds_matmul.c rename to src/examples/asmtest/mt/ds_matmul.c diff --git a/src/asmtest/mt/du_matmul.c b/src/examples/asmtest/mt/du_matmul.c similarity index 100% rename from src/asmtest/mt/du_matmul.c rename to src/examples/asmtest/mt/du_matmul.c diff --git a/src/asmtest/mt/dv_matmul.c b/src/examples/asmtest/mt/dv_matmul.c similarity index 100% rename from src/asmtest/mt/dv_matmul.c rename to src/examples/asmtest/mt/dv_matmul.c diff --git a/src/asmtest/mt/vvadd0.c b/src/examples/asmtest/mt/vvadd0.c similarity index 100% rename from src/asmtest/mt/vvadd0.c rename to src/examples/asmtest/mt/vvadd0.c diff --git a/src/asmtest/mt/vvadd1.c b/src/examples/asmtest/mt/vvadd1.c similarity index 100% rename from src/asmtest/mt/vvadd1.c rename to src/examples/asmtest/mt/vvadd1.c diff --git a/src/asmtest/mt/vvadd2.c b/src/examples/asmtest/mt/vvadd2.c similarity index 100% rename from src/asmtest/mt/vvadd2.c rename to src/examples/asmtest/mt/vvadd2.c diff --git a/src/asmtest/mt/vvadd3.c b/src/examples/asmtest/mt/vvadd3.c similarity index 100% rename from src/asmtest/mt/vvadd3.c rename to src/examples/asmtest/mt/vvadd3.c diff --git a/src/asmtest/mt/vvadd4.c b/src/examples/asmtest/mt/vvadd4.c similarity index 100% rename from src/asmtest/mt/vvadd4.c rename to src/examples/asmtest/mt/vvadd4.c diff --git a/src/getting-started/BUILDING.md b/src/examples/getting-started/BUILDING.md similarity index 100% rename from src/getting-started/BUILDING.md rename to src/examples/getting-started/BUILDING.md diff --git a/src/getting-started/README.md b/src/examples/getting-started/README.md similarity index 100% rename from src/getting-started/README.md rename to src/examples/getting-started/README.md diff --git a/src/getting-started/make-def-files/make_ARM.def b/src/examples/getting-started/make-def-files/make_ARM.def similarity index 100% rename from src/getting-started/make-def-files/make_ARM.def rename to src/examples/getting-started/make-def-files/make_ARM.def diff --git a/src/getting-started/make-def-files/make_RISCV.def b/src/examples/getting-started/make-def-files/make_RISCV.def similarity index 100% rename from src/getting-started/make-def-files/make_RISCV.def rename to src/examples/getting-started/make-def-files/make_RISCV.def diff --git a/src/getting-started/make-def-files/make_x86.def b/src/examples/getting-started/make-def-files/make_x86.def similarity index 100% rename from src/getting-started/make-def-files/make_x86.def rename to src/examples/getting-started/make-def-files/make_x86.def diff --git a/src/insttest/.gitignore b/src/examples/insttest/.gitignore similarity index 100% rename from src/insttest/.gitignore rename to src/examples/insttest/.gitignore diff --git a/src/insttest/Makefile b/src/examples/insttest/Makefile similarity index 100% rename from src/insttest/Makefile rename to src/examples/insttest/Makefile diff --git a/src/insttest/insttest.c b/src/examples/insttest/insttest.c similarity index 100% rename from src/insttest/insttest.c rename to src/examples/insttest/insttest.c diff --git a/src/m5-exit-repeat/Makefile b/src/examples/m5-exit-repeat/Makefile similarity index 100% rename from src/m5-exit-repeat/Makefile rename to src/examples/m5-exit-repeat/Makefile diff --git a/src/m5-exit-repeat/README.md b/src/examples/m5-exit-repeat/README.md similarity index 100% rename from src/m5-exit-repeat/README.md rename to src/examples/m5-exit-repeat/README.md diff --git a/src/m5-exit-repeat/m5-exit-repeat.c b/src/examples/m5-exit-repeat/m5-exit-repeat.c similarity index 100% rename from src/m5-exit-repeat/m5-exit-repeat.c rename to src/examples/m5-exit-repeat/m5-exit-repeat.c diff --git a/src/matrix-multiply-omp/Makefile b/src/examples/matrix-multiply-omp/Makefile similarity index 100% rename from src/matrix-multiply-omp/Makefile rename to src/examples/matrix-multiply-omp/Makefile diff --git a/src/matrix-multiply-omp/README.md b/src/examples/matrix-multiply-omp/README.md similarity index 100% rename from src/matrix-multiply-omp/README.md rename to src/examples/matrix-multiply-omp/README.md diff --git a/src/matrix-multiply-omp/matrix-omp-init.cpp b/src/examples/matrix-multiply-omp/matrix-omp-init.cpp similarity index 100% rename from src/matrix-multiply-omp/matrix-omp-init.cpp rename to src/examples/matrix-multiply-omp/matrix-omp-init.cpp diff --git a/src/matrix-multiply-omp/matrix-omp.cpp b/src/examples/matrix-multiply-omp/matrix-omp.cpp similarity index 100% rename from src/matrix-multiply-omp/matrix-omp.cpp rename to src/examples/matrix-multiply-omp/matrix-omp.cpp diff --git a/src/matrix-multiply-omp/matrix-omp.h b/src/examples/matrix-multiply-omp/matrix-omp.h similarity index 100% rename from src/matrix-multiply-omp/matrix-omp.h rename to src/examples/matrix-multiply-omp/matrix-omp.h diff --git a/src/matrix-multiply/Makefile b/src/examples/matrix-multiply/Makefile similarity index 100% rename from src/matrix-multiply/Makefile rename to src/examples/matrix-multiply/Makefile diff --git a/src/matrix-multiply/README.md b/src/examples/matrix-multiply/README.md similarity index 100% rename from src/matrix-multiply/README.md rename to src/examples/matrix-multiply/README.md diff --git a/src/matrix-multiply/matrix-multiply.c b/src/examples/matrix-multiply/matrix-multiply.c similarity index 100% rename from src/matrix-multiply/matrix-multiply.c rename to src/examples/matrix-multiply/matrix-multiply.c diff --git a/src/print-this/Makefile b/src/examples/print-this/Makefile similarity index 100% rename from src/print-this/Makefile rename to src/examples/print-this/Makefile diff --git a/src/print-this/README.md b/src/examples/print-this/README.md similarity index 100% rename from src/print-this/README.md rename to src/examples/print-this/README.md diff --git a/src/print-this/print-this.c b/src/examples/print-this/print-this.c similarity index 100% rename from src/print-this/print-this.c rename to src/examples/print-this/print-this.c diff --git a/src/npb-24.04-imgs/.gitignore b/src/npb-24.04-imgs/.gitignore new file mode 100644 index 000000000..4a57e240e --- /dev/null +++ b/src/npb-24.04-imgs/.gitignore @@ -0,0 +1,4 @@ +disk-image*/ +arm-ubuntu-* +disk-image-arm-npb +disk-image-x86-npb \ No newline at end of file diff --git a/src/npb-24.04-imgs/README.md b/src/npb-24.04-imgs/README.md new file mode 100644 index 000000000..21579a78b --- /dev/null +++ b/src/npb-24.04-imgs/README.md @@ -0,0 +1,186 @@ +--- +title: NPB ubuntu 24.04 disk images +tags: + - x86 + - arm + - fullsystem +permalink: resources/npb-24.04-imgs +shortdoc: > + This resource implementes the NPB benchmark . +author: ["Harshil Patel"] +license: BSD-3-Clause +--- + +This document provides instructions to create a NPB ubuntu 24.04 disk image, which, along with an example script, may be used to run NPB within gem5 simulations. The example script uses a pre-built disk-image. + +A pre-built disk image, for X86, can be found, gzipped, here: [x86-ubuntu-24.04-npb-img](https://resources.gem5.org/resources/x86-ubuntu-24.04-npb-img?version=2.0.0) + +A pre-built disk image, for arm, can be found, gzipped, here: +[arm-ubuntu-24.04-npb-img](https://resources.gem5.org/resources/arm-ubuntu-24.04-npb-img?version=2.0.0) + +## What's on the disk? + +- username: gem5 +- password: 12345 + +- The `gem5-bridge`(m5) utility is installed in `/usr/local/bin/gem5-bridge`. +- `libm5` is installed in `/usr/local/lib/`. +- The headers for `libm5` are installed in `/usr/local/include/gem5-bridge`. +- `npb` benchmark sutie with ROI annotations + +Thus, you should be able to build packages on the disk and easily link to the gem5-bridge library. + +The disk has network disabled by default to improve boot time in gem5. + +If you want to enable networking, you need to modify the disk image and move the file `/etc/netplan/50-cloud-init.yaml.bak` to `/etc/netplan/50-cloud-init.yaml`. + +## Building the Disk Image + +### Arm specific file requirement + +To get the `flash0.img` run the following commands in the `files` directory. + +```bash +dd if=/dev/zero of=flash0.img bs=1M count=64 +dd if=/usr/share/qemu-efi-aarch64/QEMU_EFI.fd of=flash0.img conv=notrunc +``` + +**Note**: The `build-arm.sh` will make this file for you. + +Assuming that you are in the `src/npb-24.04-imgs/` directory, run + +```sh +./build-x86.sh # the script downloading packer binary and building +``` + +to build the x86 disk image or + +```sh +./build-arm.sh +``` + +to run the arm disk image. +After this process succeeds, the disk image can be found on the `npb-24.04-imgs/disk-image-x86-npb/disk-image-x86-npb` or `npb-24.04-imgs/disk-image-arm-npb/disk-image-arm-npb` repectively. + +This npb image uses the prebuilt ubuntu 24.04 image as a base image. The npb image also throws the same exit events as the base image. + +Each benchmark also has its regions of intrests annotated and they throw a `gem5-bridge workbegin` and `gem5-bridge workend` exit event. + +## Init Process and Exit Events + +This section outlines the disk image's boot process variations and the impact of specific boot parameters on its behavior. +By default, the disk image boots with systemd in a non-interactive mode. +Users can adjust this behavior through kernel arguments at boot time, influencing the init system and session interactivity. + +### Boot Parameters + +The disk image supports two main kernel arguments to adjust the boot process: + +- `no_systemd=true`: Disables systemd as the init system, allowing the system to boot without systemd's management. +- `interactive=true`: Enables interactive mode, presenting a shell prompt to the user for interactive session management. + +Combining these parameters yields four possible boot configurations: + +1. **Default (Systemd, Non-Interactive)**: The system uses systemd for initialization and runs non-interactively. +2. **Systemd and Interactive**: Systemd initializes the system, and the boot process enters an interactive mode, providing a user shell. +3. **Without Systemd and Non-Interactive**: The system boots without systemd and proceeds non-interactively, executing predefined scripts. +4. **Without Systemd and Interactive**: Boots without systemd and provides a shell for interactive use. + +### Note on Print Statements and Exit Events + +- The bold points in the sequence descriptions are `printf` statements in the code, indicating key moments in the boot process. +- The `**` symbols mark gem5 exit events, essential for simulation purposes, dictating system shutdown or reboot actions based on the configured scenario. + +### Boot Sequences + +#### Default Boot Sequence (Systemd, Non-Interactive) + +- Kernel output +- **Kernel Booted print message** ** +- Running systemd print message +- Systemd output +- autologin +- **Running after_boot script** ** +- Print indicating **non-interactive** mode +- **Reading run script file** +- Script output +- Exit ** + +#### With Systemd and Interactive + +- Kernel output +- **Kernel Booted print message** ** +- Running systemd print message +- Systemd output +- autologin +- **Running after_boot script** ** +- Shell + +#### Without Systemd and Non-Interactive + +- Kernel output +- **Kernel Booted print message** ** +- autologin +- **Running after_boot script** ** +- Print indicating **non-interactive** mode +- **Reading run script file** +- Script output +- Exit ** + +#### Without Systemd and Interactive + +- Kernel output +- **Kernel Booted print message** ** +- autologin +- **Running after_boot script** ** +- Shell + +This detailed overview provides a foundational understanding of how different boot configurations affect the system's initialization and mode of operation. +By selecting the appropriate parameters, users can customize the boot process for diverse environments, ranging from automated setups to hands-on interactive sessions. + +## Handling Exit Events in gem5 + +The disk image triggers five exit events in total: + +- 3 `gem5-bridge exit` events +- 1 `gem5-bridge workbegin` event +- 1 `gem5-bridge workend` event + +To manage these events in gem5, you need to create three exit event handlers. Below is a code snippet showing how these handlers could be implemented and added to the `simulator` object in gem5: + +```python +def handle_workbegin(): + print("Done booting Linux") + print("Resetting stats at the start of ROI!") + m5.stats.reset() + processor.switch() + yield False + +# We expect that the ROI ends with `workend` or `simulate() limit reached`. +def handle_workend(): + print("Dumping stats at the end of the ROI!") + m5.stats.dump() + yield True + +def exit_event_handler(): + print("First exit: Kernel booted") + yield False # gem5 is now executing systemd startup + print("Second exit: Started `after_boot.sh` script") + # The after_boot.sh script is executed after the kernel and systemd have booted. + yield False # gem5 is now executing the `after_boot.sh` script + print("Third exit: Finished `after_boot.sh` script") + # The after_boot.sh script will run a script if passed via m5 readfile. + # This is the last exit event before the simulation exits. + yield True + +simulator = Simulator( + board=board, + on_exit_event={ + ExitEvent.WORKBEGIN: handle_workbegin(), + ExitEvent.WORKEND: handle_workend(), + ExitEvent.EXIT: exit_event_handler(), + }, +) +``` + +This script defines three handlers for different exit events (`WORKBEGIN`, `WORKEND`, and `EXIT`). diff --git a/src/arm-ubuntu/arm-ubuntu.pkr.hcl b/src/npb-24.04-imgs/arm-npb.pkr.hcl similarity index 60% rename from src/arm-ubuntu/arm-ubuntu.pkr.hcl rename to src/npb-24.04-imgs/arm-npb.pkr.hcl index 30b3cabfa..20cef1397 100644 --- a/src/arm-ubuntu/arm-ubuntu.pkr.hcl +++ b/src/npb-24.04-imgs/arm-npb.pkr.hcl @@ -23,25 +23,22 @@ variable "ssh_username" { } source "qemu" "initialize" { - boot_command = [ - "c", - "linux /casper/vmlinuz autoinstall ds=nocloud-net\\;s=http://{{.HTTPIP}}:{{.HTTPPort}}/ --- ", - "", - "initrd /casper/initrd", - "", - "boot", - "", - "" - ] + boot_command = ["", + "gem5", + "12345", + "sudo mv /etc/netplan/50-cloud-init.yaml.bak /etc/netplan/50-cloud-init.yaml", + "12345", + "sudo netplan apply", + ""] cpus = "4" disk_size = "4600" format = "raw" headless = "true" - http_directory = "http" - iso_checksum = "sha256:c209ab013280d3cd26a344def60b7b19fbb427de904ea285057d94ca6ac82dd5" - iso_urls = ["https://old-releases.ubuntu.com/releases/jammy/ubuntu-22.04-live-server-arm64.iso"] + disk_image = "true" + iso_checksum = "sha256:3dbf4f105882cc386fc1e50b6e2c70c94789083038252175739ab6a5e4b1ce52" + iso_urls = ["./arm-ubuntu-24.04-20250515.gz"] memory = "8192" - output_directory = "disk-image" + output_directory = "disk-image-arm-npb-test" qemu_binary = "/usr/bin/qemu-system-aarch64" qemuargs = [ ["-boot", "order=dc"], ["-bios", "./files/flash0.img"], @@ -49,7 +46,6 @@ source "qemu" "initialize" { ["-enable-kvm"], ["-machine", "virt"], ["-machine", "gic-version=3"], - ["-vga", "virtio"], ["-device","virtio-gpu-pci"], ["-device", "qemu-xhci"], ["-device","usb-kbd"], @@ -67,23 +63,13 @@ build { sources = ["source.qemu.initialize"] provisioner "file" { + source = "npb-with-roi/NPB/NPB3.4-OMP" destination = "/home/gem5/" - source = "files/exit.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/gem5_init.sh" } provisioner "file" { - destination = "/home/gem5/" - source = "files/after_boot.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/serial-getty@.service" + source = "makefiles/ARM/make.def" + destination = "/home/gem5/NPB3.4-OMP/config/" } provisioner "shell" { diff --git a/src/npb-24.04-imgs/build-arm.sh b/src/npb-24.04-imgs/build-arm.sh new file mode 100755 index 000000000..30beb9515 --- /dev/null +++ b/src/npb-24.04-imgs/build-arm.sh @@ -0,0 +1,24 @@ +PACKER_VERSION="1.10.0" + +if [ ! -f ./packer ]; then + wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_arm64.zip; + unzip packer_${PACKER_VERSION}_linux_arm64.zip; + rm packer_${PACKER_VERSION}_linux_arm64.zip; +fi + +# make the flash0.sh file +mkdir files +cd ./files +dd if=/dev/zero of=flash0.img bs=1M count=64 +dd if=/usr/share/qemu-efi-aarch64/QEMU_EFI.fd of=flash0.img conv=notrunc +cd .. + +# get the base image from gem5 resoruces +wget https://gem5resources.blob.core.windows.net/dist-gem5-org/dist/develop/images/arm/ubuntu-24-04/arm-ubuntu-24.04-20250515.gz +gunzip arm-ubuntu-24.04-20250515.gz + +# Install the needed plugins +./packer init arm-npb.pkr.hcl + +# Build the image +./packer build arm-npb.pkr.hcl diff --git a/src/npb-24.04-imgs/build-x86.sh b/src/npb-24.04-imgs/build-x86.sh new file mode 100755 index 000000000..e3cf74360 --- /dev/null +++ b/src/npb-24.04-imgs/build-x86.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# Copyright (c) 2024 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +PACKER_VERSION="1.10.0" + +if [ ! -f ./packer ]; then + wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip; + unzip packer_${PACKER_VERSION}_linux_amd64.zip; + rm packer_${PACKER_VERSION}_linux_amd64.zip; +fi + +wget https://gem5resources.blob.core.windows.net/dist-gem5-org/dist/develop/images/x86/ubuntu-24-04/x86-ubuntu-24.04-20250515.gz +gunzip x86-ubuntu-24.04-20250515.gz + +# Install the needed plugins +./packer init x86-npb.pkr.hcl + +# Build the image +./packer build x86-npb.pkr.hcl \ No newline at end of file diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/make.def b/src/npb-24.04-imgs/makefiles/ARM/make.def similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/make.def rename to src/npb-24.04-imgs/makefiles/ARM/make.def diff --git a/src/npb-24.04-imgs/makefiles/x86/make.def b/src/npb-24.04-imgs/makefiles/x86/make.def new file mode 100644 index 000000000..065c0cc2c --- /dev/null +++ b/src/npb-24.04-imgs/makefiles/x86/make.def @@ -0,0 +1,168 @@ +#--------------------------------------------------------------------------- +# +# SITE- AND/OR PLATFORM-SPECIFIC DEFINITIONS. +# +#--------------------------------------------------------------------------- + +#--------------------------------------------------------------------------- +# This config is specific for gem5. +#--------------------------------------------------------------------------- + + +#--------------------------------------------------------------------------- +# Items in this file will need to be changed for each platform. +#--------------------------------------------------------------------------- + +#--------------------------------------------------------------------------- +# Parallel Fortran: +# +# For CG, EP, FT, MG, LU, SP, BT and UA, which are in Fortran, the following +# must be defined: +# +# FC - Fortran compiler +# FFLAGS - Fortran compilation arguments +# F_INC - any -I arguments required for compiling Fortran +# FLINK - Fortran linker +# FLINKFLAGS - Fortran linker arguments +# F_LIB - any -L and -l arguments required for linking Fortran +# +# compilations are done with $(FC) $(F_INC) $(FFLAGS) or +# $(FC) $(FFLAGS) +# linking is done with $(FLINK) $(F_LIB) $(FLINKFLAGS) +#--------------------------------------------------------------------------- + +#--------------------------------------------------------------------------- +# This is the fortran compiler used for Fortran programs +#--------------------------------------------------------------------------- +FC = gfortran +# This links fortran programs; usually the same as ${FC} +FLINK = $(FC) + +#--------------------------------------------------------------------------- +# These macros are passed to the linker +#--------------------------------------------------------------------------- +F_LIB = -lm5 -lm + +#--------------------------------------------------------------------------- +# These macros are passed to the compiler +#--------------------------------------------------------------------------- +F_INC = + +#--------------------------------------------------------------------------- +# Global *compile time* flags for Fortran programs +#--------------------------------------------------------------------------- +FFLAGS = -O3 -fopenmp -cpp -no-pie -DM5_ANNOTATION + +#--------------------------------------------------------------------------- +# Global *link time* flags. Flags for increasing maximum executable +# size usually go here. +#--------------------------------------------------------------------------- +# Using no-pie here as m5 is compiled with the no-pie flash and cant no be build +# as a position independent executable. +FLINKFLAGS = -O3 -fopenmp -no-pie + + +#--------------------------------------------------------------------------- +# Parallel C: +# +# For IS and DC, which are in C, the following must be defined: +# +# CC - C compiler +# CFLAGS - C compilation arguments +# C_INC - any -I arguments required for compiling C +# CLINK - C linker +# CLINKFLAGS - C linker flags +# C_LIB - any -L and -l arguments required for linking C +# +# compilations are done with $(CC) $(C_INC) $(CFLAGS) or +# $(CC) $(CFLAGS) +# linking is done with $(CLINK) $(C_LIB) $(CLINKFLAGS) +#--------------------------------------------------------------------------- + +#--------------------------------------------------------------------------- +# This is the C compiler used for C programs +#--------------------------------------------------------------------------- +CC = gcc +# This links C programs; usually the same as ${CC} +CLINK = $(CC) + +#--------------------------------------------------------------------------- +# These macros are passed to the linker +#--------------------------------------------------------------------------- +C_LIB = -lm5 -lm + +#--------------------------------------------------------------------------- +# These macros are passed to the compiler +#--------------------------------------------------------------------------- +C_INC = + +#--------------------------------------------------------------------------- +# Global *compile time* flags for C programs +# DC inspects the following flags (preceded by "-D"): +# +# IN_CORE - computes all views and checksums in main memory (if there is +# enough memory) +# +# VIEW_FILE_OUTPUT - forces DC to write the generated views to disk +# +# OPTIMIZATION - turns on some nonstandard DC optimizations +# +# _FILE_OFFSET_BITS=64 +# _LARGEFILE64_SOURCE - are standard compiler flags which allow to work with +# files larger than 2GB. +#--------------------------------------------------------------------------- +CFLAGS = -O3 -fopenmp -mcmodel=medium -no-pie -DM5_ANNOTATION + +#--------------------------------------------------------------------------- +# Global *link time* flags. Flags for increasing maximum executable +# size usually go here. +#--------------------------------------------------------------------------- +# Using no-pie here as m5 is compiled with the no-pie flash and cant no be build +# as a position independent executable. +CLINKFLAGS = -O3 -fopenmp -no-pie + + +#--------------------------------------------------------------------------- +# Utilities C: +# +# This is the C compiler used to compile C utilities. Flags required by +# this compiler go here also; typically there are few flags required; hence +# there are no separate macros provided for such flags. +#--------------------------------------------------------------------------- +UCC = gcc + + +#--------------------------------------------------------------------------- +# Destination of executables, relative to subdirs of the main directory. . +#--------------------------------------------------------------------------- +BINDIR = ../bin + + +#--------------------------------------------------------------------------- +# The variable RAND controls which random number generator +# is used. It is described in detail in README.install. +# Use "randi8" unless there is a reason to use another one. +# Other allowed values are "randi8_safe", "randdp" and "randdpvec" +#--------------------------------------------------------------------------- +RAND = randi8 +# The following is highly reliable but may be slow: +# RAND = randdp + + +#--------------------------------------------------------------------------- +# The variable WTIME is the name of the wtime source code module in the +# common directory. +# For most machines, use wtime.c +# For SGI power challenge: use wtime_sgi64.c +#--------------------------------------------------------------------------- +WTIME = wtime.c + + +#--------------------------------------------------------------------------- +# Enable if either Cray (not Cray-X1) or IBM: +# (no such flag for most machines: see common/wtime.h) +# This is used by the C compiler to pass the machine name to common/wtime.h, +# where the C/Fortran binding interface format is determined +#--------------------------------------------------------------------------- +# MACHINE = -DCRAY +# MACHINE = -DIBM diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/Changes.log b/src/npb-24.04-imgs/npb-with-roi/NPB/Changes.log similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/Changes.log rename to src/npb-24.04-imgs/npb-with-roi/NPB/Changes.log diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-HPF.README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-HPF.README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-HPF.README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-HPF.README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-JAV.README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-JAV.README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-JAV.README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-JAV.README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/add.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/add.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/add.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/add.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/adi.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/adi.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/adi.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/adi.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/bt.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/bt.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/bt.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/bt.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/bt_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/bt_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/bt_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/bt_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/bt_data_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/bt_data_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/bt_data_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/bt_data_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/btio.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/btio.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/btio.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/btio.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/btio_common.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/btio_common.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/btio_common.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/btio_common.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/copy_faces.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/copy_faces.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/copy_faces.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/copy_faces.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/define.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/define.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/define.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/define.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/epio.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/epio.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/epio.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/epio.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/error.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/error.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/error.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/error.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/exact_rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/exact_rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/exact_rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/exact_rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/exact_solution.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/exact_solution.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/exact_solution.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/exact_solution.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/fortran_io.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/fortran_io.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/fortran_io.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/fortran_io.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/full_mpiio.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/full_mpiio.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/full_mpiio.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/full_mpiio.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/initialize.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/initialize.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/initialize.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/initialize.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/inputbt.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/inputbt.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/inputbt.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/inputbt.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/make_set.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/make_set.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/make_set.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/make_set.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/mpinpb.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/mpinpb.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/mpinpb.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/mpinpb.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/set_constants.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/set_constants.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/set_constants.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/set_constants.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/setup_mpi.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/setup_mpi.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/setup_mpi.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/setup_mpi.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/simple_mpiio.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/simple_mpiio.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/simple_mpiio.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/simple_mpiio.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/solve_subs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/solve_subs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/solve_subs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/solve_subs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/x_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/x_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/x_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/x_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/x_solve_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/x_solve_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/x_solve_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/x_solve_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/y_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/y_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/y_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/y_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/y_solve_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/y_solve_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/y_solve_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/y_solve_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/z_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/z_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/z_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/z_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/z_solve_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/z_solve_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/BT/z_solve_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/BT/z_solve_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/cg.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/cg.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/cg.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/cg.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/cg_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/cg_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/cg_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/cg_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/mpinpb.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/mpinpb.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/CG/mpinpb.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/CG/mpinpb.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/DGraph.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/DGraph.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/DGraph.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/DGraph.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/DGraph.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/DGraph.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/DGraph.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/DGraph.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/dt.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/dt.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/DT/dt.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/DT/dt.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/ep.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/ep.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/ep.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/ep.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/ep_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/ep_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/ep_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/ep_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/mpinpb.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/mpinpb.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/mpinpb.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/mpinpb.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/EP/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/EP/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/ft.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/ft.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/ft.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/ft.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/ft_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/ft_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/ft_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/ft_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/inputft.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/inputft.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/inputft.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/inputft.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/mpinpb.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/mpinpb.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/FT/mpinpb.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/FT/mpinpb.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/IS/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/IS/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/IS/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/IS/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/IS/is.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/IS/is.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/IS/is.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/IS/is.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/bcast_inputs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/bcast_inputs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/bcast_inputs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/bcast_inputs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/blts.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/blts.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/blts.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/blts.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/blts_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/blts_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/blts_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/blts_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/buts.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/buts.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/buts.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/buts.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/buts_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/buts_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/buts_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/buts_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/erhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/erhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/erhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/erhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/error.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/error.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/error.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/error.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exact.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exact.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exact.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exact.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_1.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_1.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_1.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_1.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_3.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_3.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_3.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_3.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_4.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_4.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_4.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_4.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_5.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_5.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_5.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_5.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_6.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_6.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/exchange_6.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/exchange_6.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/init_comm.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/init_comm.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/init_comm.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/init_comm.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/inputlu.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/inputlu.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/inputlu.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/inputlu.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacld.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacld.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacld.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacld.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacld_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacld_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacld_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacld_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacu.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacu.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacu.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacu.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacu_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacu_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/jacu_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/jacu_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/l2norm.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/l2norm.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/l2norm.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/l2norm.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/lu.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/lu.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/lu.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/lu.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/lu_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/lu_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/lu_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/lu_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/lu_data_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/lu_data_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/lu_data_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/lu_data_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/mpinpb.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/mpinpb.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/mpinpb.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/mpinpb.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/neighbors.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/neighbors.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/neighbors.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/neighbors.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/nodedim.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/nodedim.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/nodedim.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/nodedim.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/pintgr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/pintgr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/pintgr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/pintgr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/proc_grid.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/proc_grid.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/proc_grid.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/proc_grid.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/read_input.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/read_input.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/read_input.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/read_input.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/setbv.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/setbv.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/setbv.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/setbv.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/setcoeff.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/setcoeff.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/setcoeff.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/setcoeff.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/setiv.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/setiv.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/setiv.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/setiv.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/ssor.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/ssor.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/ssor.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/ssor.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/ssor_vec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/ssor_vec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/ssor_vec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/ssor_vec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/subdomain.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/subdomain.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/subdomain.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/subdomain.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/LU/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/LU/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mg.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mg.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mg.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mg.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mg.input.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mg.input.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mg.input.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mg.input.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mg_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mg_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mg_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mg_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mpinpb.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mpinpb.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MG/mpinpb.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MG/mpinpb.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpi.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpi.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpi.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpi.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpi_dummy.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpif.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpif.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/mpif.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/mpif.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/test.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/test.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/test.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/test.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime_sgi64.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime_sgi64.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/MPI_dummy/wtime_sgi64.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/MPI_dummy/wtime_sgi64.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/README.install b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/README.install similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/README.install rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/README.install diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/add.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/add.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/add.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/add.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/adi.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/adi.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/adi.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/adi.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/copy_faces.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/copy_faces.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/copy_faces.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/copy_faces.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/define.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/define.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/define.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/define.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/error.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/error.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/error.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/error.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/exact_rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/exact_rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/exact_rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/exact_rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/exact_solution.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/exact_solution.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/exact_solution.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/exact_solution.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/initialize.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/initialize.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/initialize.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/initialize.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/inputsp.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/inputsp.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/inputsp.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/inputsp.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/lhsx.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/lhsx.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/lhsx.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/lhsx.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/lhsy.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/lhsy.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/lhsy.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/lhsy.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/lhsz.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/lhsz.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/lhsz.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/lhsz.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/make_set.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/make_set.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/make_set.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/make_set.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/mpinpb.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/mpinpb.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/mpinpb.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/mpinpb.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/ninvr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/ninvr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/ninvr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/ninvr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/pinvr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/pinvr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/pinvr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/pinvr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/set_constants.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/set_constants.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/set_constants.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/set_constants.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/setup_mpi.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/setup_mpi.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/setup_mpi.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/setup_mpi.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/sp.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/sp.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/sp.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/sp.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/sp_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/sp_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/sp_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/sp_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/txinvr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/txinvr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/txinvr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/txinvr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/tzetar.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/tzetar.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/tzetar.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/tzetar.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/x_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/x_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/x_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/x_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/y_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/y_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/y_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/y_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/z_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/z_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/SP/z_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/SP/z_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/c_print_results.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/c_print_results.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/c_print_results.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/c_print_results.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/c_timers.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/c_timers.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/c_timers.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/c_timers.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/c_timers.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/c_timers.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/c_timers.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/c_timers.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/get_active_nprocs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/get_active_nprocs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/get_active_nprocs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/get_active_nprocs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/print_results.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/print_results.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/print_results.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/print_results.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randdp.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randdp.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randdp.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randdp.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randdp.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randdp.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randdp.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randdp.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randdpvec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randdpvec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randdpvec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randdpvec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randi8.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randi8.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randi8.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randi8.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randi8_safe.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randi8_safe.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/randi8_safe.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/randi8_safe.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/timers.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/timers.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/common/timers.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/common/timers.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich_m b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich_m similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich_m rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.gcc_mpich_m diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.ibm_aix64 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.ibm_aix64 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.ibm_aix64 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.ibm_aix64 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.itc_mpt b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.itc_mpt similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.itc_mpt rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.itc_mpt diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.pgi_mpich b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.pgi_mpich similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/make.def.pgi_mpich rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/make.def.pgi_mpich diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.bt b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.bt similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.bt rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.bt diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.cg b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.cg similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.cg rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.cg diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ep b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ep similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ep rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ep diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ft b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ft similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ft rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.ft diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.is b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.is similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.is rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.is diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.lu b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.lu similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.lu rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.lu diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.mg b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.mg similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.mg rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.mg diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.small b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.small similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.small rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.small diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.sp b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.sp similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.sp rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/NAS.samples/suite.def.sp diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/make.def.template b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/make.def.template similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/make.def.template rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/make.def.template diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/make.dummy b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/make.dummy similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/make.dummy rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/make.dummy diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/suite.def.template b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/suite.def.template similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/config/suite.def.template rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/config/suite.def.template diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/make.common b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/make.common similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/make.common rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/make.common diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/print_header b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/print_header similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/print_header rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/print_header diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/print_instructions b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/print_instructions similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/print_instructions rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/print_instructions diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/setparams.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/setparams.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/setparams.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/setparams.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/suite.awk b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/suite.awk similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/sys/suite.awk rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/sys/suite.awk diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/comp b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/comp similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/comp rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/comp diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/comp_pld b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/comp_pld similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/comp_pld rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/comp_pld diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/run_test b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/run_test similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/run_test rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/run_test diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/run_test_pld b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/run_test_pld similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/run_test_pld rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/run_test_pld diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/runit b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/runit similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/runit rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/runit diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/runit_pld b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/runit_pld similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-MPI/test_scripts/runit_pld rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-MPI/test_scripts/runit_pld diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/add.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/add.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/add.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/add.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/adi.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/adi.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/adi.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/adi.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/blk_par0.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/blk_par0.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/blk_par0.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/blk_par0.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/bt.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/bt.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/bt.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/bt.f90 index f801785c2..bf13d8242 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/bt.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/bt.f90 @@ -147,12 +147,12 @@ program BT call timer_clear(i) end do + call timer_start(1) + #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - call timer_start(1) - do step = 1, niter if (mod(step, 20) .eq. 0 .or. & @@ -165,12 +165,13 @@ program BT end do - call timer_stop(1) - #ifdef M5_ANNOTATION call m5_work_end_interface #endif + call timer_stop(1) + + tmax = timer_read(1) call verify(niter, class, verified) diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/bt_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/bt_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/bt_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/bt_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/error.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/error.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/error.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/error.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/exact_rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/exact_rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/exact_rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/exact_rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/exact_solution.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/exact_solution.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/exact_solution.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/exact_solution.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/initialize.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/initialize.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/initialize.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/initialize.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/inputbt.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/inputbt.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/inputbt.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/inputbt.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/set_constants.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/set_constants.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/set_constants.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/set_constants.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/solve_subs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/solve_subs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/solve_subs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/solve_subs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/solve_subs_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/solve_subs_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/solve_subs_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/solve_subs_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/work_lhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/work_lhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/work_lhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/work_lhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/work_lhs_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/work_lhs_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/work_lhs_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/work_lhs_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/x_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/x_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/x_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/x_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/x_solve_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/x_solve_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/x_solve_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/x_solve_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/y_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/y_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/y_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/y_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/y_solve_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/y_solve_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/y_solve_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/y_solve_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/z_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/z_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/z_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/z_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/z_solve_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/z_solve_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/BT/z_solve_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/BT/z_solve_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/README.carefully b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/README.carefully similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/README.carefully rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/README.carefully diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/cg.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/cg.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/cg.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/cg.f90 index c76ecc736..f964df6cb 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/cg.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/cg.f90 @@ -279,10 +279,11 @@ program cg write (*, 2000) timer_read(T_init) 2000 format(' Initialization time = ',f15.3,' seconds') + call timer_start( T_bench ) + #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - call timer_start( T_bench ) !--------------------------------------------------------------------- !----> @@ -341,12 +342,13 @@ program cg enddo ! end of main iter inv pow meth - call timer_stop( T_bench ) - #ifdef M5_ANNOTATION call m5_work_end_interface #endif + call timer_stop( T_bench ) + + !--------------------------------------------------------------------- ! End of timed section !--------------------------------------------------------------------- diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/cg_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/cg_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/CG/cg_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/CG/cg_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/ADC.par b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/ADC.par similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/ADC.par rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/ADC.par diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/adc.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/adc.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/adc.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/adc.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/adc.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/adc.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/adc.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/adc.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/adcc.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/adcc.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/adcc.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/adcc.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/dc.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/dc.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/dc.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/dc.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/extbuild.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/extbuild.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/extbuild.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/extbuild.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/jobcntl.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/jobcntl.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/jobcntl.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/jobcntl.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/macrodef.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/macrodef.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/macrodef.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/macrodef.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/protots.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/protots.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/protots.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/protots.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/rbt.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/rbt.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/rbt.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/rbt.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/rbt.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/rbt.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/DC/rbt.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/DC/rbt.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/ep.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/ep.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/ep.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/ep.f90 index c41585dd5..65a36cd81 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/ep.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/ep.f90 @@ -121,10 +121,11 @@ program EMBAR if (timers_enabled) call timer_clear(3) !$omp end parallel + call timer_start(1) + #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - call timer_start(1) t1 = a call vranlc(0, t1, a, x) @@ -218,12 +219,13 @@ program EMBAR gc = gc + q(i) 160 continue - call timer_stop(1) - #ifdef M5_ANNOTATION call m5_work_end_interface #endif + call timer_stop(1) + + tm = timer_read(1) call verify(m, sx, sy, gc, verified, classv) diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/ep_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/ep_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/ep_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/ep_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/EP/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/EP/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/blk_par0.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/blk_par0.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/blk_par0.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/blk_par0.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/ft.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/ft.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/ft.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/ft.f90 index 601ac3cc6..de2312ba2 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/ft.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/ft.f90 @@ -99,11 +99,13 @@ program ft do i = 1, t_max call timer_clear(i) end do + + call timer_start(T_total) + #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - call timer_start(T_total) if (timers_enabled) call timer_start(T_setup) call compute_indexmap(twiddle, dims(1), dims(2), dims(3)) @@ -133,12 +135,13 @@ program ft call verify(nx, ny, nz, niter, verified, class) - call timer_stop(t_total) - #ifdef M5_ANNOTATION call m5_work_end_interface #endif + call timer_stop(t_total) + + total_time = timer_read(t_total) if( total_time .ne. 0. ) then mflops = 1.0d-6*ntotal_f * & diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/ft_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/ft_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/ft_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/ft_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/inputft.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/inputft.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/FT/inputft.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/FT/inputft.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/IS/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/IS/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/IS/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/IS/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/IS/README.carefully b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/IS/README.carefully similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/IS/README.carefully rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/IS/README.carefully diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/IS/is.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/IS/is.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/IS/is.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/IS/is.c index 0e84a0b5e..8b362b99c 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/IS/is.c +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/IS/is.c @@ -957,12 +957,12 @@ int main( int argc, char **argv ) if( CLASS != 'S' ) printf( "\n iteration\n" ); -#ifdef M5_ANNOTATION - m5_work_begin_interface_(); -#endif /* Start timer */ timer_start( 0 ); +#ifdef M5_ANNOTATION + m5_work_begin_interface_(); +#endif /* This is the main iteration */ for( iteration=1; iteration<=MAX_ITERATIONS; iteration++ ) @@ -971,13 +971,13 @@ int main( int argc, char **argv ) rank( iteration ); } +#ifdef M5_ANNOTATION + m5_work_end_interface_(); +#endif /* End of timing, obtain maximum time of all processors */ timer_stop( 0 ); -#ifdef M5_ANNOTATION - m5_work_end_interface_(); -#endif timecounter = timer_read( 0 ); /* This tests that keys are in sequence: sorting of last ranked key seq diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/blts.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/blts.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/blts.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/blts.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/buts.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/buts.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/buts.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/buts.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/domain.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/domain.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/domain.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/domain.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/erhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/erhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/erhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/erhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/error.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/error.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/error.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/error.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/exact.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/exact.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/exact.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/exact.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/inputlu.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/inputlu.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/inputlu.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/inputlu.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/jacld.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/jacld.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/jacld.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/jacld.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/jacu.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/jacu.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/jacu.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/jacu.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/l2norm.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/l2norm.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/l2norm.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/l2norm.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/lu.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/lu.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/lu.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/lu.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/lu_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/lu_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/lu_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/lu_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/pintgr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/pintgr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/pintgr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/pintgr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/read_input.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/read_input.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/read_input.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/read_input.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/setbv.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/setbv.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/setbv.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/setbv.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/setcoeff.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/setcoeff.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/setcoeff.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/setcoeff.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/setiv.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/setiv.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/setiv.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/setiv.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor.f90 index 92cadb6a0..14a0e44bb 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor.f90 @@ -54,14 +54,15 @@ subroutine ssor(niter) call timer_clear(i) end do + + call timer_start(1) + if (niter > 1) then #ifdef M5_ANNOTATION call m5_work_begin_interface #endif endif - call timer_start(1) - !--------------------------------------------------------------------- ! the timestep loop !--------------------------------------------------------------------- @@ -244,14 +245,15 @@ subroutine ssor(niter) end do 900 continue - - call timer_stop(1) if (niter > 1) then #ifdef M5_ANNOTATION call m5_work_end_interface #endif endif + + call timer_stop(1) + maxtime= timer_read(1) diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor_doac.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor_doac.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor_doac.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor_doac.f90 index a5924cb25..2066d646b 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor_doac.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor_doac.f90 @@ -54,12 +54,13 @@ subroutine ssor(niter) call timer_clear(i) end do + + call timer_start(1) +if (niter > 1) then #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - - call timer_start(1) - +endif !--------------------------------------------------------------------- ! the timestep loop !--------------------------------------------------------------------- @@ -231,12 +232,15 @@ subroutine ssor(niter) end do 900 continue - - call timer_stop(1) +if (niter > 1) then #ifdef M5_ANNOTATION call m5_work_end_interface #endif +endif + + call timer_stop(1) + maxtime= timer_read(1) diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor_hp.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor_hp.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor_hp.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor_hp.f90 index 77f71ffd8..cb1b62231 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/ssor_hp.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/ssor_hp.f90 @@ -54,12 +54,14 @@ subroutine ssor(niter) call timer_clear(i) end do -#ifdef M5_ANNOTATION - call m5_work_begin_interface -#endif call timer_start(1) +if (niter > 1) then +#ifdef M5_ANNOTATION + call m5_work_begin_interface +#endif +endif !--------------------------------------------------------------------- ! the timestep loop !--------------------------------------------------------------------- @@ -232,11 +234,14 @@ subroutine ssor(niter) end do 900 continue - call timer_stop(1) - +if (niter > 1) then #ifdef M5_ANNOTATION call m5_work_end_interface #endif +endif + + call timer_stop(1) + maxtime= timer_read(1) diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/syncs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/syncs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/syncs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/syncs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/LU/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/LU/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/mg.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/mg.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/mg.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/mg.f90 index 1c2bb0cd7..ea8f54e5d 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/mg.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/mg.f90 @@ -235,12 +235,13 @@ program mg call timer_clear(i) end do + + call timer_start(T_bench) + #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - call timer_start(T_bench) - if (timeron) call timer_start(T_resid2) call resid(u,v,r,n1,n2,n3,a,k) if (timeron) call timer_stop(T_resid2) @@ -264,12 +265,13 @@ program mg call norm2u3(r,n1,n2,n3,rnm2,rnmu,nx(lt),ny(lt),nz(lt)) - call timer_stop(T_bench) - #ifdef M5_ANNOTATION call m5_work_end_interface #endif + call timer_stop(T_bench) + + t = timer_read(T_bench) verified = .FALSE. diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/mg.input.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/mg.input.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/mg.input.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/mg.input.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/mg_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/mg_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/MG/mg_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/MG/mg_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/README.install b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/README.install similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/README.install rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/README.install diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/add.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/add.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/add.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/add.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/adi.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/adi.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/adi.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/adi.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/blk_par0.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/blk_par0.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/blk_par0.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/blk_par0.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/error.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/error.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/error.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/error.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/exact_rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/exact_rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/exact_rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/exact_rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/exact_solution.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/exact_solution.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/exact_solution.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/exact_solution.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/initialize.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/initialize.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/initialize.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/initialize.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/inputsp.data.sample b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/inputsp.data.sample similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/inputsp.data.sample rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/inputsp.data.sample diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/ninvr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/ninvr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/ninvr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/ninvr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/pinvr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/pinvr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/pinvr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/pinvr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/rhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/rhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/rhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/rhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/set_constants.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/set_constants.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/set_constants.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/set_constants.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/sp.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/sp.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/sp.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/sp.f90 index faeb74de1..43de36208 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/sp.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/sp.f90 @@ -150,12 +150,13 @@ program SP call timer_clear(i) end do + + call timer_start(1) + #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - call timer_start(1) - do step = 1, niter if (mod(step, 20) .eq. 0 .or. step .eq. 1) then @@ -167,12 +168,13 @@ program SP end do - call timer_stop(1) - #ifdef M5_ANNOTATION call m5_work_end_interface #endif + call timer_stop(1) + + tmax = timer_read(1) call verify(niter, class, verified) diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/sp_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/sp_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/sp_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/sp_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/txinvr.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/txinvr.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/txinvr.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/txinvr.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/tzetar.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/tzetar.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/tzetar.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/tzetar.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/work_lhs.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/work_lhs.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/work_lhs.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/work_lhs.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/work_lhs_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/work_lhs_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/work_lhs_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/work_lhs_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/x_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/x_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/x_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/x_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/x_solve_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/x_solve_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/x_solve_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/x_solve_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/y_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/y_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/y_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/y_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/y_solve_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/y_solve_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/y_solve_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/y_solve_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/z_solve.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/z_solve.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/z_solve.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/z_solve.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/z_solve_blk.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/z_solve_blk.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/SP/z_solve_blk.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/SP/z_solve_blk.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/adapt.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/adapt.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/adapt.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/adapt.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/convect.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/convect.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/convect.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/convect.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/diffuse.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/diffuse.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/diffuse.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/diffuse.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/mason.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/mason.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/mason.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/mason.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/move.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/move.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/move.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/move.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/precond.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/precond.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/precond.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/precond.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/setup.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/setup.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/setup.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/setup.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/tmorwork.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/tmorwork.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/tmorwork.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/tmorwork.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/transfer.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/transfer.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/transfer.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/transfer.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/transfer_au.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/transfer_au.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/transfer_au.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/transfer_au.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/transfer_rd.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/transfer_rd.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/transfer_rd.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/transfer_rd.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/ua.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/ua.f90 similarity index 99% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/ua.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/ua.f90 index 3e4a41590..cffc818a4 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/ua.f90 +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/ua.f90 @@ -166,10 +166,13 @@ program ua do i = 1, t_last if (i.ne.t_init) call timer_clear(i) end do + + call timer_start(1) + #ifdef M5_ANNOTATION call m5_work_begin_interface #endif - call timer_start(1) + endif !.......advance the convection step @@ -241,12 +244,13 @@ program ua nelt_tot = nelt_tot + dble(nelt) end do - call timer_stop(1) - #ifdef M5_ANNOTATION call m5_work_end_interface #endif + call timer_stop(1) + + tmax = timer_read(1) call verify(class, verified) diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/ua_data.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/ua_data.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/ua_data.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/ua_data.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/utils.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/utils.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/utils.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/utils.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/verify.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/verify.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/UA/verify.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/UA/verify.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/c_print_results.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/c_print_results.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/c_print_results.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/c_print_results.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/c_timers.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/c_timers.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/c_timers.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/c_timers.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/c_timers.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/c_timers.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/c_timers.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/c_timers.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/hooks.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/hooks.c similarity index 97% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/hooks.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/hooks.c index 1322e12e9..c070fd21d 100644 --- a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/hooks.c +++ b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/hooks.c @@ -51,11 +51,11 @@ void m5_work_begin_interface_() { printf(" -------------------- ROI BEGIN -------------------- \n"); - m5_work_begin_addr(0,0); + m5_hypercall_addr(4); } void m5_work_end_interface_() { - m5_work_end_addr(0,0); + m5_hypercall_addr(5); printf(" -------------------- ROI END -------------------- \n"); } diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/print_results.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/print_results.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/print_results.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/print_results.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randdp.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randdp.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randdp.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randdp.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randdpvec.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randdpvec.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randdpvec.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randdpvec.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randi8.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randi8.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randi8.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randi8.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randi8_safe.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randi8_safe.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/randi8_safe.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/randi8_safe.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/timers.f90 b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/timers.f90 similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/timers.f90 rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/timers.f90 diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/wtime.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/wtime.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/wtime.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/wtime.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/wtime.h b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/wtime.h similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/wtime.h rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/wtime.h diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/wtime_sgi64.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/wtime_sgi64.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/common/wtime_sgi64.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/common/wtime_sgi64.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc_m b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc_m similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc_m rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_gcc_m diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc_p b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc_p similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc_p rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_itc_p diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_pgi b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_pgi similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_pgi rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_pgi diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_sun b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_sun similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/make.def_sun rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/make.def_sun diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.bt b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.bt similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.bt rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.bt diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.cg b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.cg similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.cg rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.cg diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ep b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ep similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ep rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ep diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ft b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ft similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ft rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.ft diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.is b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.is similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.is rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.is diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.lu b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.lu similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.lu rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.lu diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.mg b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.mg similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.mg rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.mg diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.sp b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.sp similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.sp rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/NAS.samples/suite.def.sp diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/make.def.template b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/make.def.template similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/make.def.template rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/make.def.template diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/suite.def b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/suite.def similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/suite.def rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/suite.def diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/suite.def.template b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/suite.def.template similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/config/suite.def.template rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/config/suite.def.template diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/Makefile b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/Makefile similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/Makefile rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/Makefile diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/make.common b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/make.common similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/make.common rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/make.common diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/print_header b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/print_header similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/print_header rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/print_header diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/print_instructions b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/print_instructions similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/print_instructions rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/print_instructions diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/setparams.c b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/setparams.c similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/setparams.c rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/setparams.c diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/suite.awk b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/suite.awk similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/sys/suite.awk rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/sys/suite.awk diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/test_scripts/comp b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/test_scripts/comp similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/test_scripts/comp rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/test_scripts/comp diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/test_scripts/run_test b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/test_scripts/run_test similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/test_scripts/run_test rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/test_scripts/run_test diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/test_scripts/runit b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/test_scripts/runit similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-OMP/test_scripts/runit rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-OMP/test_scripts/runit diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-SER.README b/src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-SER.README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/NPB3.4-SER.README rename to src/npb-24.04-imgs/npb-with-roi/NPB/NPB3.4-SER.README diff --git a/src/npb/disk-image/npb/npb-hooks/NPB/README b/src/npb-24.04-imgs/npb-with-roi/NPB/README similarity index 100% rename from src/npb/disk-image/npb/npb-hooks/NPB/README rename to src/npb-24.04-imgs/npb-with-roi/NPB/README diff --git a/src/npb-24.04-imgs/scripts/post-installation.sh b/src/npb-24.04-imgs/scripts/post-installation.sh new file mode 100755 index 000000000..1754681e0 --- /dev/null +++ b/src/npb-24.04-imgs/scripts/post-installation.sh @@ -0,0 +1,29 @@ +#!/bin/sh + +# Copyright (c) 2020 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +# install build-essential (gcc and g++ included) and gfortran + +#Compile NPB + +apt-get install -y gfortran + +cd /home/gem5/NPB3.4-OMP/ + +mkdir bin +make clean +make suite M5_ANNOTATION=1 +echo "Disabling network by default" +echo "See README.md for instructions on how to enable network" + +if [ -f /etc/netplan/50-cloud-init.yaml ]; then + mv /etc/netplan/50-cloud-init.yaml /etc/netplan/50-cloud-init.yaml.bak +elif [ -f /etc/netplan/00-installer-config.yaml ]; then + mv /etc/netplan/00-installer-config.yaml /etc/netplan/00-installer-config.yaml.bak + netplan apply +fi + +# Disable systemd service that waits for network to be online +systemctl disable systemd-networkd-wait-online.service +systemctl mask systemd-networkd-wait-online.service diff --git a/src/x86-ubuntu/x86-ubuntu.pkr.hcl b/src/npb-24.04-imgs/x86-npb.pkr.hcl similarity index 53% rename from src/x86-ubuntu/x86-ubuntu.pkr.hcl rename to src/npb-24.04-imgs/x86-npb.pkr.hcl index 9e913cc7d..b0f3976e3 100644 --- a/src/x86-ubuntu/x86-ubuntu.pkr.hcl +++ b/src/npb-24.04-imgs/x86-npb.pkr.hcl @@ -9,7 +9,7 @@ packer { variable "image_name" { type = string - default = "x86-ubuntu" + default = "x86-ubuntu-npb" } variable "ssh_password" { @@ -24,21 +24,22 @@ variable "ssh_username" { source "qemu" "initialize" { accelerator = "kvm" - boot_command = ["e", - "", - "", - "autoinstall ds=nocloud-net\\;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ ---", - "" - ] + boot_command = ["", + "gem5", + "12345", + "sudo mv /etc/netplan/50-cloud-init.yaml.bak /etc/netplan/50-cloud-init.yaml", + "12345", + "sudo netplan apply", + ""] cpus = "4" disk_size = "5000" format = "raw" headless = "true" - http_directory = "http" - iso_checksum = "sha256:5e38b55d57d94ff029719342357325ed3bda38fa80054f9330dc789cd2d43931" - iso_urls = ["https://old-releases.ubuntu.com/releases/jammy/ubuntu-22.04.2-live-server-amd64.iso"] + disk_image = "true" + iso_checksum = "sha256:58dfdabfd2510657776ad946c8c4e9cceacbd0806414690598a4f4808c2349b6" + iso_urls = ["./x86-ubuntu-24.04-20250515"] memory = "8192" - output_directory = "disk-image" + output_directory = "disk-image-x86-npb" qemu_binary = "/usr/bin/qemu-system-x86_64" qemuargs = [["-cpu", "host"], ["-display", "none"]] shutdown_command = "echo '${var.ssh_password}'|sudo -S shutdown -P now" @@ -53,23 +54,13 @@ build { sources = ["source.qemu.initialize"] provisioner "file" { + source = "npb-with-roi/NPB/NPB3.4-OMP" destination = "/home/gem5/" - source = "files/exit.sh" } provisioner "file" { - destination = "/home/gem5/" - source = "files/gem5_init.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/after_boot.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/serial-getty@.service" + source = "makefiles/x86/make.def" + destination = "/home/gem5/NPB3.4-OMP/config/" } provisioner "shell" { @@ -77,9 +68,4 @@ build { scripts = ["scripts/post-installation.sh"] } - provisioner "file" { - source = "/home/gem5/vmlinux-x86-ubuntu" - destination = "./disk-image/vmlinux-x86-ubuntu" - direction = "download" - } } diff --git a/src/npb/.gitignore b/src/npb/.gitignore deleted file mode 100644 index 5856da1c0..000000000 --- a/src/npb/.gitignore +++ /dev/null @@ -1 +0,0 @@ -disk-image/npb/npb-image/npb diff --git a/src/npb/README.md b/src/npb/README.md deleted file mode 100644 index f485c94c7..000000000 --- a/src/npb/README.md +++ /dev/null @@ -1,119 +0,0 @@ ---- -title: NAS Parallel Benchmarks (NPB) Tests -tags: - - x86 - - fullsystem -permalink: resources/npb -shortdoc: > - Disk image and a gem5 configuration script to run the [NAS parallel benchmarks](https://www.nas.nasa.gov/). -author: ["Ayaz Akram"] -license: BSD-3-Clause ---- - -This document provides instructions to create a disk image needed to run the NPB tests with gem5 and points to an example gem5 configuration script needed to run these tests. The example script uses a pre-built disk-image. - -The NAS parallel benchmarks ([NPB](https://www.nas.nasa.gov/)) are high performance computing (HPC) workloads consisting of different kernels and pseudo applications: - -Kernels: -- **IS:** Integer Sort, random memory access -- **EP:** Embarrassingly Parallel -- **CG:** Conjugate Gradient, irregular memory access and communication -- **MG:** Multi-Grid on a sequence of meshes, long- and short-distance communication, memory intensive -- **FT:** discrete 3D fast Fourier Transform, all-to-all communication - -Pseudo Applications: -- **BT:** Block Tri-diagonal solver -- **SP:** Scalar Penta-diagonal solver -- **LU:** Lower-Upper Gauss-Seidel solver - -There are different classes (A,B,C,D,E and F) of each workload based on the input data size. Detailed discussion of the data sizes is available [here](https://www.nas.nasa.gov/publications/npb_problem_sizes.html). - -We make use of a modified source of the NPB suite for these tests, which can be found in `disk-images/npb/npb-hooks`. -We have added ROI (region of interest) annotations for each benchmark which is used by gem5 to separate simulation statistics between different regions of each benchmark. gem5 magic instructions are used before and after each ROI to exit the guest and transfer control to gem5 the gem5 configuration script. This can then dump and reset stats, or switch to cpus of interest. - -We assume the following directory structure while following the instructions in this README file: - -``` -npb/ - |___ gem5/ # gem5 source code - | - |___ disk-image/ - | |___ build.sh # The script downloading packer binary and building the disk image - | |___ shared/ # Auxiliary files needed for disk creation - | |___ npb/ - | |___ npb-image/ # Will be created once the disk is generated - | | |___ npb # The generated disk image - | |___ npb.json # The Packer script to build the disk image - | |___ runscript.sh # Executes a user provided script in simulated guest - | |___ post-installation.sh # Moves runscript.sh to guest's .bashrc - | |___ npb-install.sh # Compiles NPB inside the generated disk image - | |___ npb-hooks # The NPB source (modified to function better with gem5). - | - |___ linux # Linux source and binary will live here - | - |___ README.md # This README file -``` - -## Disk Image - -Assuming that you are in the `src/npb/` directory (the directory containing this README), first build `m5` (which is needed to create the disk image): - -```sh -git clone https://gem5.googlesource.com/public/gem5 -cd gem5/util/m5 -scons build/x86/out/m5 -``` - -Next, - -```sh -cd disk-image -./build.sh # the script downloading packer binary and building the disk image -``` - -Once this process succeeds, the created disk image can be found on `npb/npb-image/npb`. -A disk image already created following the above instructions can be found, gzipped, [here](http://dist.gem5.org/dist/v22-1/images/x86/ubuntu-18-04/npb.img.gz). - -## Simulating NPB using an example script - -An example script with a pre-configured system is available in the following directory within the gem5 repository: - -``` -gem5/configs/example/gem5_library/x86-npb-benchmarks.py -``` - -The example script specifies a system with the following parameters: - -* A `SimpleSwitchableProcessor` (`KVM` for startup and `TIMING` for ROI execution). There are 2 CPU cores, each clocked at 3 GHz. -* 2 Level `MESI_Two_Level` cache with 32 kB L1I and L1D size, and, 256 kB L2 size. The L1 cache(s) has associativity of 8, and, the L2 cache has associativity 16. There are 2 L2 cache banks. -* The system has 3 GB `SingleChannelDDR4_2400` memory. -* The script uses `x86-linux-kernel-4.19.83` and `x86-npb`, the disk image created from following the instructions in this `README.md`. - -The example script must be run with the `X86_MESI_Two_Level` binary. To build: - -```sh -git clone https://gem5.googlesource.com/public/gem5 -cd gem5 -scons build/X86/gem5.opt -j -``` -Once compiled, you may use the example config file to run the NPB benchmark programs. You would need to specify the benchmark program (`bt`, `cg`, `ep`, `ft`, `is`, `lu`, `mg`, `sp`) and the class (`A`, `B`, `C`) separately, using the following command: - -```sh -# In the gem5 directory -build/X86/gem5.opt \ -configs/example/gem5_library/x86-npb-benchmarks.py \ ---benchmark \ ---size -``` - -Description of the two arguments, provided in the above command are: -* **--benchmark**, which refers to one of 8 benchmark programs, provided in the NAS parallel benchmark suite. These include `bt`, `cg`, `ep`, `ft`, `is`, `lu`, `mg` and `sp`. For more information on the workloads can be found at . -* **--size**, which refers to the workload class to simulate. The classes present in the pre-built disk-image are `A`, `B`, `C` and `D`. More information regarding these classes are written in the following paragraphs. - -A few important notes to keep in mind while simulating NPB using the disk-image from gem5 resources: - -* The pre-built disk image has NPB executables for classes `A`, `B`, `C` and `D`. -* Classes `D` and `F` requires main memory sizes of more than 3 GB. Therefore, most of the benchmark programs for class `D` will fail to be executed properly, as our system only has 3 GB of main memory. The `X86Board` from `gem5 stdlib` is currently limited to 3 GB of memory. -* Only benchmark `ep` with class `D` works in the aforemented configuration. -* The configuration file `x86-npb-benchmarks.py` takes class input of `A`, `B` or `C`. -* More information on memory footprint for NPB is available in the paper by [Akram et al.](https://arxiv.org/abs/2010.13216) diff --git a/src/npb/disk-image/build.sh b/src/npb/disk-image/build.sh deleted file mode 100755 index 4ba51d434..000000000 --- a/src/npb/disk-image/build.sh +++ /dev/null @@ -1,10 +0,0 @@ -PACKER_VERSION="1.7.8" - -if [ ! -f ./packer ]; then - wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip; - unzip packer_${PACKER_VERSION}_linux_amd64.zip; - rm packer_${PACKER_VERSION}_linux_amd64.zip; -fi - -./packer validate npb/npb.json -./packer build npb/npb.json diff --git a/src/npb/disk-image/npb/npb-hooks/README.md b/src/npb/disk-image/npb/npb-hooks/README.md deleted file mode 100644 index bc81f9b32..000000000 --- a/src/npb/disk-image/npb/npb-hooks/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# npb-hooks -Annotating the region of interest for npb. - -IMPORTANT NOTE: This repo is not supposed to be the canonical source for the benchmarks and serves only as an example for annotating the ROI. The source code can be obtained from [NAS Parallel Benchmarks](https://www.nas.nasa.gov/publications/npb.html) - -This repo adds ROI hooks for NAS Parallel Benchmark (OMP version for now). In this particular implementation, the hooks are coupled with gem5 specific instructions (m5_dumpreststats) to collect the stats for the ROI. But the hooks can be used for any other tool with minimal effort. - -To enable hooks, make with HOOKS=1 - -## Summary of the steps taken: - -### For the suite: -hooks.c defines the functions called by each benchmark, and the actions to be taken at the start/end of the ROI. - -Adding gem5 instructions to the hooks: -In make.common we should add proper compilation options to create object files. - -In make.def we should define the path to gem5 directory. Also, -cpp should be added to the fortran compiler (FF) options to enable support for C pre-processors. - -### For each benchmark in the suite: -The source file (i.e. BENCH.f or BENCH.c) should be modified to call roi_begin and roi_end functions. In here, we follow a the methodology used by the developers and the function calls are place right before and after the timing procedures. -We use pre-processor for conditional compilation of added function calls (HOOKS). - -The make files should be modified to add the object files created (hooks.o and any other possible dependencies - in our case m5op_x86.o). -Also, if hooks are enabled, proper flag should be set (-DHOOKS) in the final step of the compilation process (creating the executable). -These are both done "conditionally" under HOOKS flag (ifeq ($HOOKS, 1)). diff --git a/src/npb/disk-image/npb/npb-install.sh b/src/npb/disk-image/npb/npb-install.sh deleted file mode 100755 index 3a885068a..000000000 --- a/src/npb/disk-image/npb/npb-install.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -# Copyright (c) 2020 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -# install build-essential (gcc and g++ included) and gfortran - -#Compile NPB - -echo "12345" | sudo apt-get install build-essential gfortran - -cd /home/gem5/NPB3.3-OMP/ - -mkdir bin - -make suite HOOKS=1 diff --git a/src/npb/disk-image/npb/npb.json b/src/npb/disk-image/npb/npb.json deleted file mode 100755 index 73e62d6e4..000000000 --- a/src/npb/disk-image/npb/npb.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "_author": "Hoa Nguyen , Ayaz Akram ", - "_license": "Copyright (c) 2020 The Regents of the University of California. SPDX-License-Identifier: BSD 3-Clause", - "builders": - [ - { - "type": "qemu", - "format": "raw", - "accelerator": "kvm", - "boot_command": - [ - "{{ user `boot_command_prefix` }}", - "debian-installer={{ user `locale` }} auto locale={{ user `locale` }} kbd-chooser/method=us ", - "file=/floppy/{{ user `preseed` }} ", - "fb=false debconf/frontend=noninteractive ", - "hostname={{ user `hostname` }} ", - "/install/vmlinuz noapic ", - "initrd=/install/initrd.gz ", - "keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ", - "keyboard-configuration/variant=USA console-setup/ask_detect=false ", - "passwd/user-fullname={{ user `ssh_fullname` }} ", - "passwd/user-password={{ user `ssh_password` }} ", - "passwd/user-password-again={{ user `ssh_password` }} ", - "passwd/username={{ user `ssh_username` }} ", - "-- " - ], - "cpus": "{{ user `vm_cpus`}}", - "disk_size": "{{ user `image_size` }}", - "floppy_files": - [ - "shared/{{ user `preseed` }}" - ], - "headless": "{{ user `headless` }}", - "http_directory": "shared/", - "iso_checksum": "{{ user `iso_checksum_type` }}:{{ user `iso_checksum` }}", - "iso_urls": [ "{{ user `iso_url` }}" ], - "memory": "{{ user `vm_memory`}}", - "output_directory": "npb/{{ user `image_name` }}-image", - "qemuargs": - [ - [ "-cpu", "host" ], - [ "-display", "none" ] - ], - "qemu_binary":"/usr/bin/qemu-system-x86_64", - "shutdown_command": "echo '{{ user `ssh_password` }}'|sudo -S shutdown -P now", - "ssh_password": "{{ user `ssh_password` }}", - "ssh_username": "{{ user `ssh_username` }}", - "ssh_wait_timeout": "60m", - "vm_name": "{{ user `image_name` }}" - } - ], - "provisioners": - [ - { - "type": "file", - "source": "../gem5/util/m5/build/x86/out/m5", - "destination": "/home/gem5/" - }, - { - "type": "file", - "source": "shared/serial-getty@.service", - "destination": "/home/gem5/" - }, - { - "type": "file", - "source": "npb/runscript.sh", - "destination": "/home/gem5/" - }, - { - "type": "file", - "source": "npb/npb-hooks/NPB3.3.1/NPB3.3-OMP", - "destination": "/home/gem5/" - }, - { - "type": "shell", - "execute_command": "echo '{{ user `ssh_password` }}' | {{.Vars}} sudo -E -S bash '{{.Path}}'", - "scripts": - [ - "npb/post-installation.sh", - "npb/npb-install.sh" - ] - } - ], - "variables": - { - "boot_command_prefix": "", - "desktop": "false", - "image_size": "12000", - "headless": "true", - "iso_checksum": "34416ff83179728d54583bf3f18d42d2", - "iso_checksum_type": "md5", - "iso_name": "ubuntu-18.04.2-server-amd64.iso", - "iso_url": "http://old-releases.ubuntu.com/releases/18.04.2/ubuntu-18.04.2-server-amd64.iso", - "locale": "en_US", - "preseed" : "preseed.cfg", - "hostname": "gem5", - "ssh_fullname": "gem5", - "ssh_password": "12345", - "ssh_username": "gem5", - "vm_cpus": "4", - "vm_memory": "8192", - "image_name": "npb" - } - -} diff --git a/src/npb/disk-image/npb/post-installation.sh b/src/npb/disk-image/npb/post-installation.sh deleted file mode 100755 index 0ecb8068b..000000000 --- a/src/npb/disk-image/npb/post-installation.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2020 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -echo 'Post Installation Started' - -mv /home/gem5/serial-getty@.service /lib/systemd/system/ - -mv /home/gem5/m5 /sbin -ln -s /sbin/m5 /sbin/gem5 - -# copy and run outside (host) script after booting -cat /home/gem5/runscript.sh >> /root/.bashrc - -echo 'Post Installation Done' diff --git a/src/npb/disk-image/npb/runscript.sh b/src/npb/disk-image/npb/runscript.sh deleted file mode 100755 index 15e4377f1..000000000 --- a/src/npb/disk-image/npb/runscript.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -# Copyright (c) 2020 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -m5 readfile > script.sh -if [ -s script.sh ]; then - # if the file is not empty, execute it - chmod +x script.sh - ./script.sh - m5 exit -fi -# otherwise, drop to the terminal diff --git a/src/parsec/disk-image/parsec/parsec-benchmark/config/.gcc-pthreads.bldconf.swp b/src/parsec/disk-image/parsec/parsec-benchmark/config/.gcc-pthreads.bldconf.swp deleted file mode 100644 index d01113e63..000000000 Binary files a/src/parsec/disk-image/parsec/parsec-benchmark/config/.gcc-pthreads.bldconf.swp and /dev/null differ diff --git a/src/parsec/disk-image/shared/preseed.cfg b/src/parsec/disk-image/shared/preseed.cfg deleted file mode 100644 index 1fa22859b..000000000 --- a/src/parsec/disk-image/shared/preseed.cfg +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright (c) 2020 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -# Choosing keyboard layout -d-i debian-installer/locale string en_US -d-i console-setup/ask_detect boolean false -d-i keyboard-configuration/xkb-keymap select us - -# Choosing network interface -d-i netcfg/choose_interface select auto - -# Assigning hostname and domain -d-i netcfg/get_hostname string gem5-host -d-i netcfg/get_domain string gem5-domain - -d-i netcfg/wireless_wep string - -# https://unix.stackexchange.com/q/216348 -# The above link says there's no way to not to set a mirror -# Should choose a local minor -d-i mirror/country string manual -d-i mirror/http/hostname string archive.ubuntu.com -d-i mirror/http/directory string /ubuntu -d-i mirror/http/proxy string - -# Setting up `root` password -d-i passwd/root-login boolean false - -# Creating a normal user account. This account has sudo permission. -d-i passwd/user-fullname string gem5 -d-i passwd/username string gem5 -d-i passwd/user-password password 12345 -d-i passwd/user-password-again password 12345 -d-i user-setup/allow-password-weak boolean true - -# No home folder encryption -d-i user-setup/encrypt-home boolean false - -# Choosing the clock timezone -d-i clock-setup/utc boolean true -d-i time/zone string US/Eastern -d-i clock-setup/ntp boolean true - -# Choosing partition scheme -# This setting should result in MBR -# gem5 doesn't work with logical volumes -d-i partman-auto/disk string /dev/vda -d-i partman-auto/method string regular -d-i partman-lvm/device_remove_lvm boolean true -d-i partman-md/device_remove_md boolean true -d-i partman-lvm/confirm boolean true -d-i partman-lvm/confirm_nooverwrite boolean true - -# Ignoring an option to set the home folder in another partition -#d-i partman-auto/choose_recipe select atomic - -d-i partman-auto/expert_recipe string \ - bootable-root :: \ - 500 10000 1000000000 ext4 \ - method{ format } \ - format{ } \ - use_filesystem{ } filesystem{ ext4 } \ - mountpoint{ / } \ - . - - -d-i partman-auto/choose_recipe select bootable-root - -# Finishing disk partition settings -d-i partman-md/confirm boolean true -d-i partman-partitioning/confirm_write_new_label boolean true -d-i partman/choose_partition select finish -d-i partman/confirm boolean true -d-i partman/confirm_nooverwrite boolean true - -# Installing standard packages and ubuntu-server packages -# More details about ubuntu standard packages: -# https://packages.ubuntu.com/bionic/ubuntu-standard -# More details about ubuntu-server packages: -# https://packages.ubuntu.com/bionic/ubuntu-server -tasksel tasksel/first multiselect standard, ubuntu-server - -# openssh-server is required for communicating with Packer -# build-essential has standard compiling tools, could be removed -d-i pkgsel/include string openssh-server build-essential -# No package upgrade -d-i pkgsel/upgrade select none - -# Updating packages automatically is unnecessary -d-i pkgsel/update-policy select none - -# Choosing not to report installed software to some servers -popularity-contest popularity-contest/participate boolean false - -# Installing grub -d-i grub-installer/only_debian boolean true - -# Install to the above partition -d-i grub-installer/bootdev string default - -# Answering the prompt saying the installation is finished -d-i finish-install/reboot_in_progress note - -# Answering the prompt saying no bootloader is installed -# This will appear if grub is not installed -nobootloader nobootloader/confirmation_common note diff --git a/src/riscv-fs-alt/README.md b/src/riscv-fs-alt/README.md new file mode 100644 index 000000000..2c918f949 --- /dev/null +++ b/src/riscv-fs-alt/README.md @@ -0,0 +1,17 @@ +# Repository Structure + +This repository contains resources related to RISC-V full-system builds. Note that some of these resources may be outdated. + +**Directory Structure:** + +- **lupv:** + Documentation on how to build the RISC-V LUPV kernel, bootloader, and disk image. + +- **riscv-boot-exit-nodisk:** + Documentation on building a simple RISC-V bootloader with Linux kernel 5.10. + +- **riscv-busy-box:** + Documentation on building a RISC-V bootloader and BusyBox disk image. + +- **riscv-ubuntu-20.04:** + Documentation on building a RISC-V Ubuntu 20.04 disk image. diff --git a/src/lupv/README.md b/src/riscv-fs-alt/lupv/README.md similarity index 100% rename from src/lupv/README.md rename to src/riscv-fs-alt/lupv/README.md diff --git a/src/lupv/config_busybox_rv64_092021 b/src/riscv-fs-alt/lupv/config_busybox_rv64_092021 similarity index 100% rename from src/lupv/config_busybox_rv64_092021 rename to src/riscv-fs-alt/lupv/config_busybox_rv64_092021 diff --git a/src/riscv-boot-exit-nodisk/README.md b/src/riscv-fs-alt/riscv-boot-exit-nodisk/README.md similarity index 100% rename from src/riscv-boot-exit-nodisk/README.md rename to src/riscv-fs-alt/riscv-boot-exit-nodisk/README.md diff --git a/src/riscv-fs-alt/riscv-busy-box/README.md b/src/riscv-fs-alt/riscv-busy-box/README.md new file mode 100644 index 000000000..b165252d8 --- /dev/null +++ b/src/riscv-fs-alt/riscv-busy-box/README.md @@ -0,0 +1,263 @@ +--- +title: RISC-V full system +tags: + - fullsystem + - riscv +layout: default +permalink: resources/riscv-fs +shortdoc: > + Resources to build a riscv disk image, a riscv boot loader and points to the gem5 scripts to run riscv Linux FS simulations. +author: ["Ayaz Akram"] +--- + +# RISCV Full System + +This document provides instructions to create a riscv disk image, a riscv boot loader (`berkeley bootloader (bbl)`) and also points to the associated gem5 scripts to run riscv Linux full system simulations. +The boot loader `bbl` is compiled with a Linux kernel and a device tree as well. + +The used disk image is based on [busybox](https://busybox.net/) and [UCanLinux](https://github.com/UCanLinux/). It is built using the instructions, mostly from [here](https://github.com/UCanLinux/riscv64-sample). + +**Note:** All components are cross compiled on an x86 host using a riscv tool chain. We used `88b004d4c2a7d4e4f08b17ee32d2` commit of the riscv tool chain source while building the source (riscv gcc version 10.2.0). + +We assume the following directory structure while following the instructions in this README file: + +``` +riscv-fs/ + |___ gem5/ # gem5 source code (to be cloned here) + | + |___ riscv-disk # built disk image will go here + | + |___ riscv-gnu-toolchain # riscv tool chain for cross compilation + | + |___ riscv64-sample # UCanLinux source + | |__linux # linux source + | |__busybox # busybox source + | |__riscv-pk # riscv proxy kernel source (bbl) + | |__RootFS # root file system for disk image + | + |___ README.md # This README file +``` + +## RISCV Toolchain + +We use `RISC-V GNU Compiler Toolchain`. To build the toolchain, follow the following instructions, assuming you are in the `riscv-fs` directory. + +```sh +# install required libraries +sudo apt-get install -y autoconf automake autotools-dev curl python3 libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev + +# clone riscv gnu toolchain source +git clone https://github.com/riscv/riscv-gnu-toolchain +cd riscv-gnu-toolchain +git checkout 88b004d4c2a7d4e4f08b17ee32d2 + +# change the prefix to your directory +# of choice for installation of the +# toolchain +./configure --prefix=/opt/riscv + +# build the toolchain +make linux -j$(nproc) +``` + +Update the `PATH` environment variable so that the following instructions can figure out where to find the riscv toolchain. + +```sh +export PATH=$PATH:/opt/riscv/bin/ +``` + +**Note:** The above step is necessary and might cause errors while cross compiling different components for riscv if other methods are used to point to the toolchain. + +## UCanLinux Source + +Clone the `UCanLinux source.` + +```sh +# going back to base riscv-fs directory +cd ../ + +git clone https://github.com/UCanLinux/riscv64-sample +``` + +The following sections provide instructions to build both `bbl` and disk images. + +## Linux Kernel + +Clone the latest LTS Linux kernel (v5.10): + +```sh +cd riscv64-sample/ +git clone --depth 1 --branch v5.10 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git +``` + +To configure and compile the kernel: + +```sh +cd linux + +# copy the kernel config from the riscv64-sample +# directory (cloned previously) + +cp ../kernel.config .config + +# configure the kernel and build it +make ARCH=riscv CROSS_COMPILE=riscv64-unknown-linux-gnu- menuconfig +make ARCH=riscv CROSS_COMPILE=riscv64-unknown-linux-gnu- all -j$(nproc) +``` + +This should generate a `vmlinux` image in the `linux` directory. +A pre-built RISC-V 5.10 linux kernel can be downloaded [here](http://dist.gem5.org/dist/v22-1/kernels/riscv/static/vmlinux-5.10). + +## Bootloader (bbl) + +To build the bootloader, clone the RISCV proxy kernel (`pk`) source, which is an application execution environment and contains the bbl source as well. + +```sh +# going back to base riscv64-sample directory +cd ../ +git clone https://github.com/riscv/riscv-pk.git + +cd riscv-pk + +mkdir build +cd build + +apt-get install device-tree-compiler + +# configure bbl build +../configure --host=riscv64-unknown-linux-gnu --with-payload=../../linux/vmlinux --prefix=/opt/riscv/ + +make -j$(nproc) + +chmod 755 bbl + +# optional: strip the bbl binary +riscv64-unknown-linux-gnu-strip bbl +``` + +This will produce a `bbl` bootloader binary with linux kernel in `riscv-pk/build` directory. +A pre-built copy of this bootloard binary, with the linux kernel can be downloaded [here](http://dist.gem5.org/dist/v22-1/kernels/riscv/static/bootloader-vmlinux-5.10). + +## Busy Box + +Clone and compile the busybox: + +```sh +# going back to riscv64-sample directory +cd ../.. +git clone git://busybox.net/busybox.git +cd busybox +git checkout 1_30_stable # checkout the latest stable branch +make menuconfig +cp ../busybox.config .config # optional +make menuconfig +make CROSS_COMPILE=riscv64-unknown-linux-gnu- all -j$(nproc) +make CROSS_COMPILE=riscv64-unknown-linux-gnu- install +``` + +## Root File System for Disk Image + +Next, we will be setting up a root file system: + +```sh +# going back to riscv64-sample directory +cd ../ + +mkdir RootFS +cd RootFS +cp -a ../skeleton/* . + +# copy linux tools/binaries from busbybox (created above) +cp -a ../busybox/_install/* . + +# install modules from linux kernel compiled above +cd ../linux/ +make ARCH=riscv CROSS_COMPILE=riscv64-unknown-linux-gnu- INSTALL_MOD_PATH=../RootFS modules_install + +# install libraries from the toolchain built above +cd ../RootFS +cp -a /opt/riscv/sysroot/lib . + +# create empty directories +mkdir dev home mnt proc sys tmp var +cd etc/network +mkdir if-down.d if-post-down.d if-pre-up.d if-up.d + +# build m5 util for riscv and move +# it to the root file system as well +cd ../../../../ +cd gem5/util/m5 +scons build/riscv/out/m5 +cp build/riscv/out/m5 ../../../riscv64-sample/RootFS/sbin/ +``` + +**Note**: the default cross-compiler is `riscv64-unknown-linux-gnu-`. To change the cross-compiler, you can set the cross-compiler using the scons sticky variable `riscv.CROSS_COMPILE`. For example, +```sh +scons riscv.CROSS_COMPILE=riscv64-linux-gnu- build/riscv/out/m5 +``` +## Disk Image + +Create a disk of 512MB size. + +```sh +cd ../../../ +dd if=/dev/zero of=riscv_disk bs=1M count=512 +``` + +Making and mounting a root file system on the disk: + +```sh +mkfs.ext2 -L riscv-rootfs riscv_disk + +sudo mkdir /mnt/rootfs +sudo mount riscv_disk /mnt/rootfs + +sudo cp -a riscv64-sample/RootFS/* /mnt/rootfs + +sudo chown -R -h root:root /mnt/rootfs/ +df /mnt/rootfs +sudo umount /mnt/rootfs +``` + +The disk image `riscv_disk` is ready to use. +A pre-built, gzipped, disk image can be downloaded [here](http://dist.gem5.org/dist/v22-1/images/riscv/busybox/riscv-disk.img.gz). + +**Note:** If you need to resize the disk image once it is created, you can do the following: + +```sh +e2fsck -f riscv_disk +resize2fs ./riscv_disk 512M +``` + +Also, if it is required to change the contents of the disk image, it can be mounted as: + +```sh +mount -o loop riscv_disk [some mount directory] +``` + +## Example Run Script + +An example configuration using this disk image with the boot loader can be found in `configs/example/gem5_library/riscv-fs.py` in the gem5 repository. + +To run this, you can execute the following within the gem5 repository: + +```sh +scons build/RISCV/gem5.opt -j`nproc` +./build/RISCV/gem5.opt configs/example/gem5_library/riscv-fs.py +``` + +The gem5 stdlib will automatically download the resources as required. +Once the simulation has booted you can interact with the system's console via `telnet`: + +```sh +telnet localhost +``` + +Another option is to use `m5term` provided by gem5. To compile and launch `m5term`, +```sh +cd gem5/util/term +make # compiling +./m5term localhost # launching the terminal +``` + +The linux has both `login` and `password` set as `root`. diff --git a/src/riscv-ubuntu/README.md b/src/riscv-fs-alt/riscv-ubuntu-20.04/README.md similarity index 100% rename from src/riscv-ubuntu/README.md rename to src/riscv-fs-alt/riscv-ubuntu-20.04/README.md diff --git a/src/arm-ubuntu/files/exit.sh b/src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/exit.sh old mode 100755 new mode 100644 similarity index 100% rename from src/arm-ubuntu/files/exit.sh rename to src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/exit.sh diff --git a/src/riscv-ubuntu/disk-image/riscv-ubuntu/gem5_init.sh b/src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/gem5_init.sh similarity index 100% rename from src/riscv-ubuntu/disk-image/riscv-ubuntu/gem5_init.sh rename to src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/gem5_init.sh diff --git a/src/riscv-ubuntu/disk-image/riscv-ubuntu/post-installation.sh b/src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/post-installation.sh similarity index 100% rename from src/riscv-ubuntu/disk-image/riscv-ubuntu/post-installation.sh rename to src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/post-installation.sh diff --git a/src/riscv-ubuntu/disk-image/riscv-ubuntu/riscv-ubuntu.json b/src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/riscv-ubuntu.json similarity index 100% rename from src/riscv-ubuntu/disk-image/riscv-ubuntu/riscv-ubuntu.json rename to src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/riscv-ubuntu/riscv-ubuntu.json diff --git a/src/parsec/disk-image/shared/serial-getty@.service b/src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/shared/serial-getty@.service similarity index 100% rename from src/parsec/disk-image/shared/serial-getty@.service rename to src/riscv-fs-alt/riscv-ubuntu-20.04/disk-image/shared/serial-getty@.service diff --git a/src/riscv-fs/README.md b/src/riscv-fs/README.md index b165252d8..fac072707 100644 --- a/src/riscv-fs/README.md +++ b/src/riscv-fs/README.md @@ -1,263 +1,11 @@ ---- -title: RISC-V full system -tags: - - fullsystem - - riscv -layout: default -permalink: resources/riscv-fs -shortdoc: > - Resources to build a riscv disk image, a riscv boot loader and points to the gem5 scripts to run riscv Linux FS simulations. -author: ["Ayaz Akram"] ---- +# Directory Structure -# RISCV Full System +This repository contains the latest resources for RISC-V full-system builds. -This document provides instructions to create a riscv disk image, a riscv boot loader (`berkeley bootloader (bbl)`) and also points to the associated gem5 scripts to run riscv Linux full system simulations. -The boot loader `bbl` is compiled with a Linux kernel and a device tree as well. +**Directory Structure:** -The used disk image is based on [busybox](https://busybox.net/) and [UCanLinux](https://github.com/UCanLinux/). It is built using the instructions, mostly from [here](https://github.com/UCanLinux/riscv64-sample). +- **riscv-opensbi:** + Documentation on building a RISC-V OpenSBI bootloader and Linux 6.5.5 kernel. -**Note:** All components are cross compiled on an x86 host using a riscv tool chain. We used `88b004d4c2a7d4e4f08b17ee32d2` commit of the riscv tool chain source while building the source (riscv gcc version 10.2.0). - -We assume the following directory structure while following the instructions in this README file: - -``` -riscv-fs/ - |___ gem5/ # gem5 source code (to be cloned here) - | - |___ riscv-disk # built disk image will go here - | - |___ riscv-gnu-toolchain # riscv tool chain for cross compilation - | - |___ riscv64-sample # UCanLinux source - | |__linux # linux source - | |__busybox # busybox source - | |__riscv-pk # riscv proxy kernel source (bbl) - | |__RootFS # root file system for disk image - | - |___ README.md # This README file -``` - -## RISCV Toolchain - -We use `RISC-V GNU Compiler Toolchain`. To build the toolchain, follow the following instructions, assuming you are in the `riscv-fs` directory. - -```sh -# install required libraries -sudo apt-get install -y autoconf automake autotools-dev curl python3 libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev - -# clone riscv gnu toolchain source -git clone https://github.com/riscv/riscv-gnu-toolchain -cd riscv-gnu-toolchain -git checkout 88b004d4c2a7d4e4f08b17ee32d2 - -# change the prefix to your directory -# of choice for installation of the -# toolchain -./configure --prefix=/opt/riscv - -# build the toolchain -make linux -j$(nproc) -``` - -Update the `PATH` environment variable so that the following instructions can figure out where to find the riscv toolchain. - -```sh -export PATH=$PATH:/opt/riscv/bin/ -``` - -**Note:** The above step is necessary and might cause errors while cross compiling different components for riscv if other methods are used to point to the toolchain. - -## UCanLinux Source - -Clone the `UCanLinux source.` - -```sh -# going back to base riscv-fs directory -cd ../ - -git clone https://github.com/UCanLinux/riscv64-sample -``` - -The following sections provide instructions to build both `bbl` and disk images. - -## Linux Kernel - -Clone the latest LTS Linux kernel (v5.10): - -```sh -cd riscv64-sample/ -git clone --depth 1 --branch v5.10 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git -``` - -To configure and compile the kernel: - -```sh -cd linux - -# copy the kernel config from the riscv64-sample -# directory (cloned previously) - -cp ../kernel.config .config - -# configure the kernel and build it -make ARCH=riscv CROSS_COMPILE=riscv64-unknown-linux-gnu- menuconfig -make ARCH=riscv CROSS_COMPILE=riscv64-unknown-linux-gnu- all -j$(nproc) -``` - -This should generate a `vmlinux` image in the `linux` directory. -A pre-built RISC-V 5.10 linux kernel can be downloaded [here](http://dist.gem5.org/dist/v22-1/kernels/riscv/static/vmlinux-5.10). - -## Bootloader (bbl) - -To build the bootloader, clone the RISCV proxy kernel (`pk`) source, which is an application execution environment and contains the bbl source as well. - -```sh -# going back to base riscv64-sample directory -cd ../ -git clone https://github.com/riscv/riscv-pk.git - -cd riscv-pk - -mkdir build -cd build - -apt-get install device-tree-compiler - -# configure bbl build -../configure --host=riscv64-unknown-linux-gnu --with-payload=../../linux/vmlinux --prefix=/opt/riscv/ - -make -j$(nproc) - -chmod 755 bbl - -# optional: strip the bbl binary -riscv64-unknown-linux-gnu-strip bbl -``` - -This will produce a `bbl` bootloader binary with linux kernel in `riscv-pk/build` directory. -A pre-built copy of this bootloard binary, with the linux kernel can be downloaded [here](http://dist.gem5.org/dist/v22-1/kernels/riscv/static/bootloader-vmlinux-5.10). - -## Busy Box - -Clone and compile the busybox: - -```sh -# going back to riscv64-sample directory -cd ../.. -git clone git://busybox.net/busybox.git -cd busybox -git checkout 1_30_stable # checkout the latest stable branch -make menuconfig -cp ../busybox.config .config # optional -make menuconfig -make CROSS_COMPILE=riscv64-unknown-linux-gnu- all -j$(nproc) -make CROSS_COMPILE=riscv64-unknown-linux-gnu- install -``` - -## Root File System for Disk Image - -Next, we will be setting up a root file system: - -```sh -# going back to riscv64-sample directory -cd ../ - -mkdir RootFS -cd RootFS -cp -a ../skeleton/* . - -# copy linux tools/binaries from busbybox (created above) -cp -a ../busybox/_install/* . - -# install modules from linux kernel compiled above -cd ../linux/ -make ARCH=riscv CROSS_COMPILE=riscv64-unknown-linux-gnu- INSTALL_MOD_PATH=../RootFS modules_install - -# install libraries from the toolchain built above -cd ../RootFS -cp -a /opt/riscv/sysroot/lib . - -# create empty directories -mkdir dev home mnt proc sys tmp var -cd etc/network -mkdir if-down.d if-post-down.d if-pre-up.d if-up.d - -# build m5 util for riscv and move -# it to the root file system as well -cd ../../../../ -cd gem5/util/m5 -scons build/riscv/out/m5 -cp build/riscv/out/m5 ../../../riscv64-sample/RootFS/sbin/ -``` - -**Note**: the default cross-compiler is `riscv64-unknown-linux-gnu-`. To change the cross-compiler, you can set the cross-compiler using the scons sticky variable `riscv.CROSS_COMPILE`. For example, -```sh -scons riscv.CROSS_COMPILE=riscv64-linux-gnu- build/riscv/out/m5 -``` -## Disk Image - -Create a disk of 512MB size. - -```sh -cd ../../../ -dd if=/dev/zero of=riscv_disk bs=1M count=512 -``` - -Making and mounting a root file system on the disk: - -```sh -mkfs.ext2 -L riscv-rootfs riscv_disk - -sudo mkdir /mnt/rootfs -sudo mount riscv_disk /mnt/rootfs - -sudo cp -a riscv64-sample/RootFS/* /mnt/rootfs - -sudo chown -R -h root:root /mnt/rootfs/ -df /mnt/rootfs -sudo umount /mnt/rootfs -``` - -The disk image `riscv_disk` is ready to use. -A pre-built, gzipped, disk image can be downloaded [here](http://dist.gem5.org/dist/v22-1/images/riscv/busybox/riscv-disk.img.gz). - -**Note:** If you need to resize the disk image once it is created, you can do the following: - -```sh -e2fsck -f riscv_disk -resize2fs ./riscv_disk 512M -``` - -Also, if it is required to change the contents of the disk image, it can be mounted as: - -```sh -mount -o loop riscv_disk [some mount directory] -``` - -## Example Run Script - -An example configuration using this disk image with the boot loader can be found in `configs/example/gem5_library/riscv-fs.py` in the gem5 repository. - -To run this, you can execute the following within the gem5 repository: - -```sh -scons build/RISCV/gem5.opt -j`nproc` -./build/RISCV/gem5.opt configs/example/gem5_library/riscv-fs.py -``` - -The gem5 stdlib will automatically download the resources as required. -Once the simulation has booted you can interact with the system's console via `telnet`: - -```sh -telnet localhost -``` - -Another option is to use `m5term` provided by gem5. To compile and launch `m5term`, -```sh -cd gem5/util/term -make # compiling -./m5term localhost # launching the terminal -``` - -The linux has both `login` and `password` set as `root`. +- **riscv-ubuntu-22.04-24.04:** + Documentation and scripts for building a RISC-V Ubuntu 22.04 or 24.04 disk image. diff --git a/src/riscv-opensbi/README.md b/src/riscv-fs/riscv-opensbi/README.md similarity index 100% rename from src/riscv-opensbi/README.md rename to src/riscv-fs/riscv-opensbi/README.md diff --git a/src/riscv-opensbi/build-env.dockerfile b/src/riscv-fs/riscv-opensbi/build-env.dockerfile similarity index 100% rename from src/riscv-opensbi/build-env.dockerfile rename to src/riscv-fs/riscv-opensbi/build-env.dockerfile diff --git a/src/riscv-ubuntu-22.04/.gitignore b/src/riscv-fs/riscv-ubuntu-22.04-24.04/.gitignore similarity index 100% rename from src/riscv-ubuntu-22.04/.gitignore rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/.gitignore diff --git a/src/riscv-ubuntu-22.04/BUILING.md b/src/riscv-fs/riscv-ubuntu-22.04-24.04/BUILING.md similarity index 100% rename from src/riscv-ubuntu-22.04/BUILING.md rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/BUILING.md diff --git a/src/riscv-ubuntu-22.04/build.sh b/src/riscv-fs/riscv-ubuntu-22.04-24.04/build.sh similarity index 90% rename from src/riscv-ubuntu-22.04/build.sh rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/build.sh index 5a5d5f289..c61eeb1c9 100755 --- a/src/riscv-ubuntu-22.04/build.sh +++ b/src/riscv-fs/riscv-ubuntu-22.04-24.04/build.sh @@ -26,7 +26,7 @@ if [[ "$ubuntu_version" == "22.04" ]]; then fi if [[ "$ubuntu_version" == "24.04" ]]; then - wget https://cdimage.ubuntu.com/releases/noble/release/ubuntu-24.04-preinstalled-server-riscv64.img.xz + wget https://old-releases.ubuntu.com/releases/noble/ubuntu-24.04-preinstalled-server-riscv64.img.xz unxz ubuntu-24.04-preinstalled-server-riscv64.img.xz fi diff --git a/src/arm-ubuntu/files/after_boot.sh b/src/riscv-fs/riscv-ubuntu-22.04-24.04/files/after_boot.sh old mode 100755 new mode 100644 similarity index 100% rename from src/arm-ubuntu/files/after_boot.sh rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/files/after_boot.sh diff --git a/src/riscv-ubuntu-22.04/files/gem5_init.sh b/src/riscv-fs/riscv-ubuntu-22.04-24.04/files/gem5_init.sh similarity index 100% rename from src/riscv-ubuntu-22.04/files/gem5_init.sh rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/files/gem5_init.sh diff --git a/src/arm-ubuntu/files/serial-getty@.service b/src/riscv-fs/riscv-ubuntu-22.04-24.04/files/serial-getty@.service similarity index 100% rename from src/arm-ubuntu/files/serial-getty@.service rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/files/serial-getty@.service diff --git a/src/riscv-ubuntu-22.04/riscv-ubuntu.pkr.hcl b/src/riscv-fs/riscv-ubuntu-22.04-24.04/riscv-ubuntu.pkr.hcl similarity index 100% rename from src/riscv-ubuntu-22.04/riscv-ubuntu.pkr.hcl rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/riscv-ubuntu.pkr.hcl diff --git a/src/riscv-ubuntu-22.04/scripts/post-installation.sh b/src/riscv-fs/riscv-ubuntu-22.04-24.04/scripts/post-installation.sh similarity index 100% rename from src/riscv-ubuntu-22.04/scripts/post-installation.sh rename to src/riscv-fs/riscv-ubuntu-22.04-24.04/scripts/post-installation.sh diff --git a/src/riscv-opensbi-alt/Dockerfile-linux b/src/riscv-opensbi-alt/Dockerfile-linux deleted file mode 100644 index 3ecdc8605..000000000 --- a/src/riscv-opensbi-alt/Dockerfile-linux +++ /dev/null @@ -1,4 +0,0 @@ -FROM --platform=$BUILDPLATFORM alpine:3.18.4 - -# The Linux dependencies -RUN apk add --no-cache build-base bc bison flex openssl paholelibssl perl diff --git a/src/riscv-opensbi-alt/Dockerfile-opensbi b/src/riscv-opensbi-alt/Dockerfile-opensbi deleted file mode 100644 index 1ad52f0a2..000000000 --- a/src/riscv-opensbi-alt/Dockerfile-opensbi +++ /dev/null @@ -1,11 +0,0 @@ -FROM --platform=$BUILDPLATFORM ubuntu:22.04 as riscv-toolchain - -# The RISCV Tool Chain dependencies (not correct... needs work...). -RUN apt update && apt install -y git autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-dev - -RUN git clone -b 2023.10.12 --depth 1 --single-branch https://github.com/riscv/riscv-gnu-toolchain - -WORKDIR /riscv-gnu-toolchain -RUN ./configure --prefix=/opt/riscv -RUN make -j$(nproc) linux - diff --git a/src/riscv-opensbi-alt/README.md b/src/riscv-opensbi-alt/README.md deleted file mode 100644 index 353ff6745..000000000 --- a/src/riscv-opensbi-alt/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# An alternative way to build opensbi for RISC-V - -`docker-compose up` is a command that is used to start and run multi-container Docker applications. -It reads the `docker-compose.yml` file and starts the services defined in it. -This command is useful for managing complex applications that require multiple containers. -In this case we are creating services to build the two binaries: linux and opensbi. - -On the other hand, `docker buildx` is a Docker CLI plugin that extends the `docker build` command with the ability to build images for multiple platforms. -It allows you to create and manage builder instances, which are used to build images for different architectures and operating systems. -This is useful for building images that can run on different platforms, such as ARM and x86. In this case we use it to build to RISC-V. - -When doing multiplatform builds, `docker-compose up` can still be used to manage the containers, but `docker buildx` must be used to build the images for multiple platforms. -This involves creating a builder instance with `docker buildx create`, setting it as the default builder with `docker buildx use`, and then running `docker buildx build` with the `--platform` flag to specify the target platforms. - -This example is not complete but should provide a good example of how this could be done. -I cannot get opensbi to build, but this is mostly due to not knowing how to setup the correct environment in "Dockerfile-opensbi" (my build command in "docker-compose.yaml" may also be incorrect). - -Once complete all a user would need to do is run `docker-compose up` and the two binaries would be built and available for use. diff --git a/src/riscv-opensbi-alt/docker-compose.yaml b/src/riscv-opensbi-alt/docker-compose.yaml deleted file mode 100644 index 0d61ef093..000000000 --- a/src/riscv-opensbi-alt/docker-compose.yaml +++ /dev/null @@ -1,62 +0,0 @@ - -version: '3' - -services: - obtain-opensbi: - image: alpine/git - volumes: - - ./:/work - working_dir: /work/ - command: | - clone -c advice.detachedHead=false -b v1.3.1 --depth 1 --single-branch https://github.com/riscv-software-src/opensbi - - build-opensbi: - depends_on: - - obtain-opensbi - build: - context: . - dockerfile: Dockerfile-opensbi - platforms: - - linux/riscv64 - platform: linux/riscv64 - volumes: - - ./opensbi:/work - working_dir: /work/ - # Can't figure out how to pass `nproc` to make, so using 10, change or fix. - command: make PLATFORM=generic FW_JUMP=y FW_JUMP_ADDR=0x80200000 FW_JUMP_FDT_ADDR=0x87e00000 -j 10 - - obtain-linux: - image: alpine/git - volumes: - - ./:/work - working_dir: /work/ - command: | - clone -c advice.detachedHead=false -b v6.5-rc5 --depth 1 --single-branch https://github.com/torvalds/linux.git - - config-linux: - depends_on: - - obtain-linux - build: - context: . - dockerfile: Dockerfile-linux - platforms: [linux/riscv64] - volumes: - - ./linux:/work - working_dir: /work/ - platform: linux/riscv64 - command: make defconfig - - build-linux: - depends_on: - - obtain-linux - - config-linux - build: - context: . - dockerfile: Dockerfile-linux - platforms: [linux/riscv64] - volumes: - - ./linux:/work - working_dir: /work/ - platform: linux/riscv64 - # Couldn't get -j`nproc` to work, so using 10, change or fix. - command: make -j 10 \ No newline at end of file diff --git a/src/riscv-ubuntu-22.04/files/serial-getty@.service b/src/riscv-ubuntu-22.04/files/serial-getty@.service deleted file mode 100644 index 121e8e355..000000000 --- a/src/riscv-ubuntu-22.04/files/serial-getty@.service +++ /dev/null @@ -1,46 +0,0 @@ -# SPDX-License-Identifier: LGPL-2.1+ -# -# This file is part of systemd. -# -# systemd is free software; you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation; either version 2.1 of the License, or -# (at your option) any later version. - -[Unit] -Description=Serial Getty on %I -Documentation=man:agetty(8) man:systemd-getty-generator(8) -Documentation=http://0pointer.de/blog/projects/serial-console.html -BindsTo=dev-%i.device -After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target -After=rc-local.service - -# If additional gettys are spawned during boot then we should make -# sure that this is synchronized before getty.target, even though -# getty.target didn't actually pull it in. -Before=getty.target -IgnoreOnIsolate=yes - -# IgnoreOnIsolate causes issues with sulogin, if someone isolates -# rescue.target or starts rescue.service from multi-user.target or -# graphical.target. -Conflicts=rescue.service -Before=rescue.service - -[Service] -# The '-o' option value tells agetty to replace 'login' arguments with an -# option to preserve environment (-p), followed by '--' for safety, and then -# the entered username. -ExecStart=-/sbin/agetty --autologin gem5 --keep-baud 115200,38400,9600 %I $TERM -Type=idle -Restart=always -UtmpIdentifier=%I -TTYPath=/dev/%I -TTYReset=yes -TTYVHangup=yes -KillMode=process -IgnoreSIGPIPE=no -SendSIGHUP=yes - -[Install] -WantedBy=getty.target diff --git a/src/riscv-ubuntu/disk-image/shared/serial-getty@.service b/src/riscv-ubuntu/disk-image/shared/serial-getty@.service deleted file mode 100644 index b0424f0e6..000000000 --- a/src/riscv-ubuntu/disk-image/shared/serial-getty@.service +++ /dev/null @@ -1,46 +0,0 @@ -# SPDX-License-Identifier: LGPL-2.1+ -# -# This file is part of systemd. -# -# systemd is free software; you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation; either version 2.1 of the License, or -# (at your option) any later version. - -[Unit] -Description=Serial Getty on %I -Documentation=man:agetty(8) man:systemd-getty-generator(8) -Documentation=http://0pointer.de/blog/projects/serial-console.html -BindsTo=dev-%i.device -After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target -After=rc-local.service - -# If additional gettys are spawned during boot then we should make -# sure that this is synchronized before getty.target, even though -# getty.target didn't actually pull it in. -Before=getty.target -IgnoreOnIsolate=yes - -# IgnoreOnIsolate causes issues with sulogin, if someone isolates -# rescue.target or starts rescue.service from multi-user.target or -# graphical.target. -Conflicts=rescue.service -Before=rescue.service - -[Service] -# The '-o' option value tells agetty to replace 'login' arguments with an -# option to preserve environment (-p), followed by '--' for safety, and then -# the entered username. -ExecStart=-/sbin/agetty --autologin root --keep-baud 115200,38400,9600 %I $TERM -Type=idle -Restart=always -UtmpIdentifier=%I -TTYPath=/dev/%I -TTYReset=yes -TTYVHangup=yes -KillMode=process -IgnoreSIGPIPE=no -SendSIGHUP=yes - -[Install] -WantedBy=getty.target diff --git a/src/ubuntu-generic-diskimages/.gitignore b/src/ubuntu-generic-diskimages/.gitignore new file mode 100644 index 000000000..6fa003226 --- /dev/null +++ b/src/ubuntu-generic-diskimages/.gitignore @@ -0,0 +1,7 @@ +**packer +**packer_*.zip +packer_cache/ +x86-disk-image-22-04/ +x86-disk-image-24-04/ +arm-disk-image-22-04/ +arm-disk-image-24-04/ diff --git a/src/ubuntu-generic-diskimages/BUILDING.md b/src/ubuntu-generic-diskimages/BUILDING.md new file mode 100644 index 000000000..dbe0887a2 --- /dev/null +++ b/src/ubuntu-generic-diskimages/BUILDING.md @@ -0,0 +1,181 @@ +--- +title: Building the base x86-ubuntu and arm-ubuntu image for Ubuntu 22.04 and 24.04 +authors: + - Harshil Patel +--- + +This document provides instructions for creating the **x86-ubuntu** and **arm-ubuntu** disk images. The images can be built for **Ubuntu 22.04** or **Ubuntu 24.04**. + +## Directory Structure + +- **`files/`**: Contains files that are copied to the disk image. +- **`kernel-and-modules/`**: Contains scripts and Dockerfiles necessary for building the default kernel in Ubuntu 22.04 and 24.04 for ARM disk images. Each subdirectory corresponds to a specific Ubuntu version: + - **`arm-ubuntu-22.04/`**: Contains a Dockerfile and `copy_modules_to_host.sh` for building the default Ubuntu 22.04 kernel and modules with the `gem5-bridge` module installed. + - **`arm-ubuntu-24.04/`**: Contains a Dockerfile and `copy_modules_to_host.sh` for building the default Ubuntu 24.04 kernel and modules with the `gem5-bridge` module installed. + + After building the Dockerfile, you can retrieve the kernel and modules on your host using the `copy_modules_to_host.sh` script. +- **`scripts/`**: Contains scripts that run on the disk image after installation. + - **`disable-network.sh`**: Disables networking by renaming the Netplan configuration file (`.yaml` → `.yaml.bak`) and disabling network services in systemd. Disabling network decreases boot time by removing the 2 minute wait for network service to get online in systemd. + - **`disable-systemd-services-x86.sh`**: Disables non-essential systemd services for x86 disk images to reduce boot time in gem5 simulations. + - **`extract-x86-kernel.sh`**: Extracts the kernel from the x86 disk image and moves it to `/home/gem5`. Packer then copies the extracted kernel from the disk image to the host. + - **`increase-system-entropy-for-arm-disk.sh`**: Uses `haveged` to increase system entropy for ARM disk images, reducing boot delays caused by low entropy. + - **`install-common-packages.sh`**: Installs necessary packages common to all disk images. + - **`install-gem5-bridge.sh`**: Clones and builds `gem5-bridge`, allowing the disk image to use `m5ops` commands. For more information about using `m5ops` you can take a look at . + - **`install-user-benchmarks.sh`**: User-editable script for installing custom benchmarks. + - **`install-user-packages.sh`**: User-editable script for installing additional packages beyond those in `install-common-packages.sh`. + - **`update-gem5-init.sh`**: Updates the `init` file with `gem5_init.sh` from the `files` directory. The `gem5_init.sh` script updates the `init` script that is run when ubuntu boots to include the `no_systemd` kernel arg, initialize the `gem5-bridge` driver and call an exit event indicating that the kernel has booted. + - **`update-modules-arm-22.04.sh`**: Installs kernel modules built via the Dockerfile in `kernel-and-modules/arm-ubuntu-22.04` for the ARM 22.04 disk image. + - **`update-modules-arm-24.04.sh`**: Installs kernel modules built via the Dockerfile in `kernel-and-modules/arm-ubuntu-24.04` for the ARM 24.04 disk image. + +- **`http/`**: Contains Ubuntu cloud-init autoinstall files for different architectures and versions. + - `arm-22-04/`: Autoinstall files for ARM Ubuntu 22.04. + - `arm-24-04/`: Autoinstall files for ARM Ubuntu 24.04. + - `x86/`: Autoinstall files for x86 Ubuntu 22.04 and 24.04. + +- **Disk Image Output Directories**: + - `x86-disk-image-22.04/`: x86 Ubuntu 22.04 disk image output. + - `x86-disk-image-24.04/`: x86 Ubuntu 24.04 disk image output. + - `arm-disk-image-22.04/`: ARM Ubuntu 22.04 disk image output. + - `arm-disk-image-24.04/`: ARM Ubuntu 24.04 disk image output. + +## ARM Image Specific Requirements + +To successfully build and boot an ARM disk image, you need to prepare the **kernel modules** and an **EFI boot file**. + +### **Building and Installing Kernel Modules (ARM)** + +Since the ARM disk image requires the `gem5-bridge` module to enable running `gem5-bridge` commands without using `sudo` inside gem5 simulations, we must build the kernel modules before running the Packer script. + +#### **Steps to Build the Kernel and Modules** + +1. **Navigate to the Appropriate Directory** + Change to the directory corresponding to the Ubuntu version of the disk image you are building: + + ```sh + cd kernel-and-modules/arm-ubuntu-22.04 # For Ubuntu 22.04 + cd kernel-and-modules/arm-ubuntu-24.04 # For Ubuntu 24.04 + ``` + +2. **Run the `copy_modules_to_host.sh` Script** + This script builds the kernel and modules inside a Docker container and then copies them to the host machine: + + ```sh + ./copy_modules_to_host.sh + ``` + +3. **Verify the Output Directory** + After running the script, a directory named **`my-arm--kernel`** will be created in the `kernel-and-modules` directory. This directory contains: + + - `vmlinux`: The built kernel (**used in gem5 simulations but not copied onto the built disk image**). + - A subdirectory containing all kernel modules, including `gem5-bridge`. + +### **Generating the EFI Boot File** + +The ARM disk image requires an **EFI file** to boot in qemu. Running `build-arm.sh` automatically generates this file.This is provided as `flash0.img` in the Packer configuration. + +To generate `flash0.img` manually, run the following commands in the `files/` directory: + +```bash +dd if=/dev/zero of=flash0.img bs=1M count=64 +dd if=/usr/share/qemu-efi-aarch64/QEMU_EFI.fd of=flash0.img conv=notrunc +``` + +## Building the Disk Image + +- **For x86**: + Run `build-x86.sh` with either `22.04` or `24.04` as an argument to build the respective x86 disk image in the `ubuntu-generic-diskimages` directory. + +- **For ARM**: + Run `build-arm.sh` with `22.04` or `24.04` to build the respective ARM disk image in `ubuntu-generic-diskimages`. + + **ARM Build Assumption**: + The build assumes execution on an **ARM machine**, as it uses KVM for virtualization. If running on a non-ARM host, update `build-arm.sh` by setting `"use_kvm=false"` in the `./packer build` command: + + ```bash + ./packer build -var "use_kvm=false" -var "ubuntu_version=${ubuntu_version}" ./packer-scripts/arm-ubuntu.pkr.hcl + ``` + + You would also need to update the isa of the packer binary being downloaded in the `build-arm.sh` file. To download the `amd64` packer binary you can update the section that downloads the packer binary in `build-arm.sh` file to the following: + + ```bash + if [ ! -f ./packer ]; then + wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip; + unzip packer_${PACKER_VERSION}_linux_amd64.zip; + rm packer_${PACKER_VERSION}_linux_amd64.zip; + fi + ``` + + The `build-arm.sh` script downloads the Packer binary, initializes Packer, and builds the disk image. + +## Kernel Extraction (x86 Only) + +For **x86 disk images**, the kernel is extracted as part of the post-installation process. + +- The extracted kernel is stored in `/home/gem5/vmlinux-x86-ubuntu` within the disk image. +- Packer's **file provisioner** (`direction=download`) copies this file to the host machine in the `x86-disk-image-24.04/` or `x86-disk-image-22.04/` output directory depending upon the disk image being built. +- The kernel version is printed before extraction in `post-installation.sh`. + +This kernel can be used as a resource for **gem5 simulations** and is not restricted to this disk image. + +## Changes from the Base Ubuntu Image + +- **Default User**: + - Username: `gem5` + - Password: `12345` + +- **Networking**: + - **Disabled by default** by renaming `/etc/netplan/00-installer-config.yaml` or `/etc/netplan/50-cloud-init.yaml` to `.bak`. + - **To re-enable networking**: + + ```sh + sudo mv /etc/netplan/00-installer-config.yaml.bak /etc/netplan/00-installer-config.yaml + sudo systemctl unmask systemd-networkd-wait-online.service + sudo systemctl enable systemd-networkd-wait-online.service + sudo systemctl start systemd-networkd-wait-online.service # If enabling immediately + ``` + +- **gem5-Bridge (`m5`)**: + - Installed at `/usr/local/bin/gem5-bridge` with a symlink to `m5` for compatibility. + - `libm5` is installed in `/usr/local/lib/`, and headers are placed in `/usr/local/include/m5`. + +## Extending the Disk Image + +- Add more packages by modifying `scripts/install-user-packages.sh`. Install benchmarks onto the base disk image by modifying `scripts/install-user-benchmarks.sh`. +- Transfer additional files using Packer’s file provisioner: + + ```hcl + provisioner "file" { + destination = "/home/gem5/" + source = "path/to/files" + } + ``` + +If you need to increase the size of the image when adding more libraries and files to the image update the size of the partition in the respective `http/*/user-data` file. Also, update the `disk_size` parameter in the packer file to be at least one mega byte more than the size you defined in the `user-data` file. + +**NOTE:** You can extend this disk image by modifying the `install-user-benchmarks` and `install-user-packages.sh` script, but it requires building the image from scratch. + +To take a pre-built image and add new files or packages, take a look at the following [documentation](https://www.gem5.org/documentation/gem5-stdlib/extending-disk-images). + +## Troubleshooting + +- **Enable Packer Logs**: This causes Packer to print additional debug messages. + + ```sh + PACKER_LOG=INFO ./build.sh + ``` + +- **Common Packer Bug**: + - VM build may abort after **2-5 minutes**, even with `ssh_timeout` set. + - Workaround: **Increase `ssh_handshake_attempts`** (e.g., `1000`). + +- **Monitor Installation**: + - Use a **VNC viewer** to watch installation. The port is displayed in the terminal. + The output may appear as follows: + + ```bash + ==> qemu.initialize: Waiting 10s for boot... + ==> qemu.initialize: Connecting to VM via VNC (127.0.0.1:5995) + ``` + +For further details, refer to: +[Ubuntu Autoinstall Documentation](https://ubuntu.com/server/docs/install/autoinstall). diff --git a/src/x86-ubuntu/README.md b/src/ubuntu-generic-diskimages/README.md similarity index 57% rename from src/x86-ubuntu/README.md rename to src/ubuntu-generic-diskimages/README.md index a32113ee4..b0a4ef9a6 100644 --- a/src/x86-ubuntu/README.md +++ b/src/ubuntu-generic-diskimages/README.md @@ -1,12 +1,11 @@ --- -title: Base Linux x86-ubuntu image +title: Base Linux x86-ubuntu and arm-ubuntu image with Ubuntu 22.04 or 24.04 shortdoc: > - Resources to build a generic x86-ubuntu disk image and run a "boot-exit" test. + Resources to build a generic x86-ubuntu or arm-ubuntu disk image and run a "boot-exit" test. authors: ["Harshil Patel"] --- -The x86-ubuntu disk image is based on Ubuntu 22.04 and has its `.bashrc` file modified in such a way that it executes a script passed from the gem5 configuration files (using the `m5 readfile` instruction). -The `boot-exit` test passes a script that causes the guest OS to terminate the simulation (using the `m5 exit` instruction) as soon as the system boots. +The disk images are based on Ubuntu and support both x86 and ARM architectures, specifically Ubuntu 22.04 and 24.04. These images have their .bashrc files modified to execute a script passed from the gem5 configuration files (using the m5 readfile instruction). The boot-exit test passes a script that causes the guest OS to terminate the simulation (using the m5 exit instruction) as soon as the system boots. ## What's on the disk? @@ -15,13 +14,19 @@ The `boot-exit` test passes a script that causes the guest OS to terminate the s - The `gem5-bridge`(m5) utility is installed in `/usr/local/bin/gem5-bridge`. - `libm5` is installed in `/usr/local/lib/`. -- The headers for `libm5` are installed in `/usr/local/include/gem5-bridge`. +- The headers for `libm5` are installed in `/usr/local/include/`. Thus, you should be able to build packages on the disk and easily link to the gem5-bridge library. The disk has network disabled by default to improve boot time in gem5. -If you want to enable networking, you need to modify the disk image and move the file `/etc/netplan/00-installer-config.yaml.bak` to `/etc/netplan/00-installer-config.yaml`. +If you want to enable networking, you need to modify the disk image and move the file `/etc/netplan/00-installer-config.yaml.bak` or `/etc/netplan/50-cloud-init.yaml.bak` to `/etc/netplan/00-installer-config.yaml` or `/etc/netplan/50-cloud-init.yaml` depending on which config file the disk image contains. The x86 ubuntu 22.04 image should have `/etc/netplan/00-installer-config.yaml` and the other images should have ``/etc/netplan/50-cloud-init.yaml`. +For example you can use the following commands to re-enable network: + +```sh +sudo mv /etc/netplan/50-cloud-init.yaml.bak /etc/netplan/50-cloud-init.yaml +sudo netplan apply +``` ### Installed packages @@ -104,7 +109,7 @@ By selecting the appropriate parameters, users can customize the boot process fo ## Example Run Scripts -Within the gem5 repository, two example scripts are provided which utilize the x86-ubuntu resource. +Within the gem5 repository, two example scripts are provided which utilize the x86 ubuntu 24.04 image. The first is `configs/example/gem5_library/x86-ubuntu-run.py`. This will boot the OS with a Timing CPU. @@ -112,19 +117,70 @@ To run: ```sh scons build/X86/gem5.opt -j`nproc` -./build/X86/gem5.opt configs/example/gem5_library/x86-ubuntu-run.py +./build/ALL/gem5.opt configs/example/gem5_library/x86-ubuntu-run.py ``` The second is `configs/example/gem5_library/x86-ubuntu-run-with-kvm.py`. -This will boot the OS using KVM cores before switching to Timing Cores to run a simple echo command. +This will boot the OS using KVM cores before switching to Timing Cores after systemd is booted. To run: ```sh scons build/X86/gem5.opt -j`nproc` -./build/X86/gem5.opt configs/example/gem5_library/x86-ubuntu-run-with-kvm.py` +./build/ALL/gem5.opt configs/example/gem5_library/x86-ubuntu-run-with-kvm.py +``` + +To use your local disk image you can use the `DiskImageResource` class from `resources.py` in gem5. +Following is an example of how to use your local disk image in gem5: + +```python +disk_img = DiskImageResource("/path/to/disk/image/directory/x86-disk-image-24-04/x86-ubuntu") +board.set_kernel_disk_workload( + disk_image=disk_img, + kernel=obtain_resource("x86-linux-kernel-5.4.0-105-generic"), + kernel_args=[ + "earlyprintk=ttyS0", + "console=ttyS0", + "lpj=7999923", + "root=/dev/sda2" + ] + ) +``` + +**Note:** the `x86-ubuntu-with-kvm.py` script requires a x86 host machine with KVM to function correctly. + +The gem5 respository also has two example scripts that utilize the arm ubuntu 24.04 image. + +The first is `configs/example/gem5_library/arm-ubuntu-run.py`. +This will boot the OS with a Timing CPU +To run: + +```sh +scons build/ARM/gem5.opt -j `nproc` +./build/ALL/gem5.opt configs/example/gem5_library/arm-ubuntu-run.py +``` + +The second is `configs/example/gem5_library/arm-ubuntu-run-with-kvm.py`. +This will boot the OS using KVM cores before switching to Timing Cores after systemd is booted. +To run: + +```sh +scons build/ARM/gem5.opt -j `nproc` +./build/ALL/gem5.opt configs/example/gem5_library/arm-ubuntu-run-with-kvm.py +``` + +To use your local disk image you can use the `DiskImageResource` class from `resources.py` in gem5. +Following is an example of how to use your local disk image in gem5: + +```python +disk_img = DiskImageResource("/path/to/disk/image/directory/arm-disk-image-22-04/arm-ubuntu", root_partition="2") +board.set_kernel_disk_workload( + disk_image=disk_img, + bootloader=obtain_resource("arm64-bootloader-foundation"), + kernel=obtain_resource("arm64-linux-kernel-5.15.36") + ) ``` -**Note:** the `x86-ubuntu-with-kvm.py` script requires a host machine with KVM to function correctly. +**Note:** the `arm-ubuntu-run-with-kvm.py` script requires an Arm host machine with KVM to function correctly. ## Building and modifying the disk image diff --git a/src/ubuntu-generic-diskimages/build-arm.sh b/src/ubuntu-generic-diskimages/build-arm.sh new file mode 100755 index 000000000..2ddf6320d --- /dev/null +++ b/src/ubuntu-generic-diskimages/build-arm.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +# Copyright (c) 2024 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +PACKER_VERSION="1.10.0" + +# This part installs the packer binary on the arm64 machine as we are assuming +# that we are building the disk image on an arm64 machine. +if [ ! -f ./packer ]; then + wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_arm64.zip; + unzip packer_${PACKER_VERSION}_linux_arm64.zip; + rm packer_${PACKER_VERSION}_linux_arm64.zip; +fi + +# Check if the Ubuntu version variable is provided +if [ -z "$1" ]; then + echo "Usage: $0 " + echo "Example: $0 22.04 or $0 24.04" + exit 1 +fi + +# Store the Ubuntu version from the command line argument +ubuntu_version="$1" + +# Check if the specified Ubuntu version is valid +if [[ "$ubuntu_version" != "22.04" && "$ubuntu_version" != "24.04" ]]; then + echo "Error: Invalid Ubuntu version '$ubuntu_version'. Must be '22.04' or '24.04'." + exit 1 +fi + +# make the flash0.sh file +cd ./files +dd if=/dev/zero of=flash0.img bs=1M count=64 +dd if=/usr/share/qemu-efi-aarch64/QEMU_EFI.fd of=flash0.img conv=notrunc +cd .. + +# Install the needed plugins +./packer init ./packer-scripts/arm-ubuntu.pkr.hcl + +# Build the image with the specified Ubuntu version +./packer build -var "ubuntu_version=${ubuntu_version}" ./packer-scripts/arm-ubuntu.pkr.hcl diff --git a/src/ubuntu-generic-diskimages/build-x86.sh b/src/ubuntu-generic-diskimages/build-x86.sh new file mode 100755 index 000000000..52e0adb77 --- /dev/null +++ b/src/ubuntu-generic-diskimages/build-x86.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +# Copyright (c) 2024 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +PACKER_VERSION="1.10.0" + +if [ ! -f ./packer ]; then + wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip; + unzip packer_${PACKER_VERSION}_linux_amd64.zip; + rm packer_${PACKER_VERSION}_linux_amd64.zip; +fi + +# Check if the Ubuntu version variable is provided +if [ -z "$1" ]; then + echo "Usage: $0 " + echo "Example: $0 22.04 or $0 24.04" + exit 1 +fi + +# Store the Ubuntu version from the command line argument +ubuntu_version="$1" + +# Check if the specified Ubuntu version is valid +if [[ "$ubuntu_version" != "22.04" && "$ubuntu_version" != "24.04" ]]; then + echo "Error: Invalid Ubuntu version '$ubuntu_version'. Must be '22.04' or '24.04'." + exit 1 +fi + +# Install the needed plugins +./packer init ./packer-scripts/x86-ubuntu.pkr.hcl + +# Build the image with the specified Ubuntu version +./packer build -var "ubuntu_version=${ubuntu_version}" ./packer-scripts/x86-ubuntu.pkr.hcl diff --git a/src/riscv-ubuntu-22.04/files/after_boot.sh b/src/ubuntu-generic-diskimages/files/arm/after_boot.sh old mode 100644 new mode 100755 similarity index 89% rename from src/riscv-ubuntu-22.04/files/after_boot.sh rename to src/ubuntu-generic-diskimages/files/arm/after_boot.sh index c503c0f1f..62d9a12ac --- a/src/riscv-ubuntu-22.04/files/after_boot.sh +++ b/src/ubuntu-generic-diskimages/files/arm/after_boot.sh @@ -14,7 +14,7 @@ # gem5-bridge exit signifying that after_boot.sh is running printf "In after_boot.sh...\n" -gem5-bridge exit # TODO: Make this a specialized event. +gem5-bridge --addr=0x10010000 hypercall 2 # Read /proc/cmdline and parse options @@ -34,13 +34,13 @@ else # Try to read the file from the host when running with gem5 if ! [ -z $IGNORE_M5 ]; then printf "Starting gem5 init... trying to read run script file via readfile.\n" - if ! gem5-bridge readfile > /tmp/script; then + if ! gem5-bridge --addr=0x10010000 readfile > /tmp/script; then printf "Failed to run gem5-bridge readfile, exiting!\n" rm -f /tmp/script # If we can't read the script exit the simulation. If we cannot exit the # simulation, this probably means that we are running in QEMU. So, ignore # future calls to gem5-bridge. - if ! gem5-bridge exit; then + if ! gem5-bridge --addr=0x10010000 exit; then # Useful for booting the disk image in (e.g.,) qemu for debugging printf "gem5-bridge exit failed, dropping to shell.\n" IGNORE_M5=1 /bin/bash @@ -51,7 +51,7 @@ else /tmp/script printf "Done running script from gem5-bridge, exiting.\n" rm -f /tmp/script - gem5-bridge exit + gem5-bridge --addr=0x10010000 hypercall 3 fi fi fi diff --git a/src/ubuntu-generic-diskimages/files/arm/gem5_init.sh b/src/ubuntu-generic-diskimages/files/arm/gem5_init.sh new file mode 100755 index 000000000..94719272e --- /dev/null +++ b/src/ubuntu-generic-diskimages/files/arm/gem5_init.sh @@ -0,0 +1,52 @@ +#!/bin/bash + +# Copyright (c) 2024 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +# This file is a custom init script for gem5. +# It will either boot with or without systemd depending on the kernel +# command line options. If the kernel command line contains "no_systemd", +# then systemd will not be started and the script will drop to a shell. + +# mount /proc and /sys so that we can read the command line +mount -t proc /proc /proc +mount -t sysfs /sys /sys +# Read /proc/cmdline and parse options +cmdline=$(cat /proc/cmdline) +no_systemd=false + +# Load gem5_bridge driver +## Default parameters (ARM64) +gem5_bridge_baseaddr=0x10010000 +gem5_bridge_rangesize=0x10000 +## Try to read overloads from kernel arguments +if [[ $cmdline =~ gem5_bridge_baseaddr=([[:alnum:]]+) ]]; then + gem5_bridge_baseaddr=${BASH_REMATCH[1]} +fi +if [[ $cmdline =~ gem5_bridge_rangesize=([[:alnum:]]+) ]]; then + gem5_bridge_rangesize=${BASH_REMATCH[1]} +fi +## Insert driver +modprobe gem5_bridge \ + gem5_bridge_baseaddr=$gem5_bridge_baseaddr \ + gem5_bridge_rangesize=$gem5_bridge_rangesize + +# gem5-bridge exit signifying that kernel is booted +# This will cause the simulation to exit. Note that this will +# cause qemu to fail. +printf "Kernel booted, In gem5 init...\n" +gem5-bridge --addr=0x10010000 hypercall 1 + +if [[ $cmdline == *"no_systemd"* ]]; then + no_systemd=true +fi + +# Run systemd via exec if not disabled +if [[ $no_systemd == false ]]; then + printf "Starting systemd...\n" + exec /lib/systemd/systemd +else + # Directly log in as the gem5 user + printf "Dropping to shell as gem5 user...\n" + exec su - gem5 +fi diff --git a/src/riscv-ubuntu/disk-image/riscv-ubuntu/exit.sh b/src/ubuntu-generic-diskimages/files/exit.sh old mode 100644 new mode 100755 similarity index 100% rename from src/riscv-ubuntu/disk-image/riscv-ubuntu/exit.sh rename to src/ubuntu-generic-diskimages/files/exit.sh diff --git a/src/ubuntu-generic-diskimages/files/serial-getty@.service-override.conf b/src/ubuntu-generic-diskimages/files/serial-getty@.service-override.conf new file mode 100644 index 000000000..031f440cf --- /dev/null +++ b/src/ubuntu-generic-diskimages/files/serial-getty@.service-override.conf @@ -0,0 +1,4 @@ + +[Service] +ExecStart= +ExecStart=-/sbin/agetty --autologin gem5 --keep-baud 115200,38400,9600 %I $TERM diff --git a/src/x86-ubuntu/files/after_boot.sh b/src/ubuntu-generic-diskimages/files/x86/after_boot.sh similarity index 96% rename from src/x86-ubuntu/files/after_boot.sh rename to src/ubuntu-generic-diskimages/files/x86/after_boot.sh index c503c0f1f..db281d0c9 100755 --- a/src/x86-ubuntu/files/after_boot.sh +++ b/src/ubuntu-generic-diskimages/files/x86/after_boot.sh @@ -14,7 +14,7 @@ # gem5-bridge exit signifying that after_boot.sh is running printf "In after_boot.sh...\n" -gem5-bridge exit # TODO: Make this a specialized event. +gem5-bridge hypercall 2 # Read /proc/cmdline and parse options @@ -51,7 +51,7 @@ else /tmp/script printf "Done running script from gem5-bridge, exiting.\n" rm -f /tmp/script - gem5-bridge exit + gem5-bridge hypercall 3 fi fi fi diff --git a/src/x86-ubuntu/files/gem5_init.sh b/src/ubuntu-generic-diskimages/files/x86/gem5_init.sh similarity index 66% rename from src/x86-ubuntu/files/gem5_init.sh rename to src/ubuntu-generic-diskimages/files/x86/gem5_init.sh index 553531732..e421f8a2d 100755 --- a/src/x86-ubuntu/files/gem5_init.sh +++ b/src/ubuntu-generic-diskimages/files/x86/gem5_init.sh @@ -15,11 +15,27 @@ mount -t sysfs /sys /sys cmdline=$(cat /proc/cmdline) no_systemd=false +# Load gem5_bridge driver +## Default parameters (x86_64) +gem5_bridge_baseaddr=0xffff0000 +gem5_bridge_rangesize=0x10000 +## Try to read overloads from kernel arguments +if [[ $cmdline =~ gem5_bridge_baseaddr=([[:alnum:]]+) ]]; then + gem5_bridge_baseaddr=${BASH_REMATCH[1]} +fi +if [[ $cmdline =~ gem5_bridge_rangesize=([[:alnum:]]+) ]]; then + gem5_bridge_rangesize=${BASH_REMATCH[1]} +fi +## Insert driver +modprobe gem5_bridge \ + gem5_bridge_baseaddr=$gem5_bridge_baseaddr \ + gem5_bridge_rangesize=$gem5_bridge_rangesize + # gem5-bridge exit signifying that kernel is booted # This will cause the simulation to exit. Note that this will # cause qemu to fail. printf "Kernel booted, In gem5 init...\n" -gem5-bridge exit # TODO: Make this a specialized event. +gem5-bridge hypercall 1 if [[ $cmdline == *"no_systemd"* ]]; then no_systemd=true diff --git a/src/arm-ubuntu/http-24-04/meta-data b/src/ubuntu-generic-diskimages/http/arm-22-04/meta-data similarity index 100% rename from src/arm-ubuntu/http-24-04/meta-data rename to src/ubuntu-generic-diskimages/http/arm-22-04/meta-data diff --git a/src/arm-ubuntu/http/user-data b/src/ubuntu-generic-diskimages/http/arm-22-04/user-data similarity index 100% rename from src/arm-ubuntu/http/user-data rename to src/ubuntu-generic-diskimages/http/arm-22-04/user-data diff --git a/src/arm-ubuntu/http/meta-data b/src/ubuntu-generic-diskimages/http/arm-24-04/meta-data similarity index 100% rename from src/arm-ubuntu/http/meta-data rename to src/ubuntu-generic-diskimages/http/arm-24-04/meta-data diff --git a/src/arm-ubuntu/http-24-04/user-data b/src/ubuntu-generic-diskimages/http/arm-24-04/user-data similarity index 100% rename from src/arm-ubuntu/http-24-04/user-data rename to src/ubuntu-generic-diskimages/http/arm-24-04/user-data diff --git a/src/x86-ubuntu/http/meta-data b/src/ubuntu-generic-diskimages/http/x86/meta-data similarity index 100% rename from src/x86-ubuntu/http/meta-data rename to src/ubuntu-generic-diskimages/http/x86/meta-data diff --git a/src/x86-ubuntu/http/user-data b/src/ubuntu-generic-diskimages/http/x86/user-data similarity index 100% rename from src/x86-ubuntu/http/user-data rename to src/ubuntu-generic-diskimages/http/x86/user-data diff --git a/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-22.04/Dockerfile b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-22.04/Dockerfile new file mode 100644 index 000000000..88d59da74 --- /dev/null +++ b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-22.04/Dockerfile @@ -0,0 +1,48 @@ +FROM ubuntu:22.04 AS stage1 + +# Install necessary packages for kernel build +RUN apt update && apt install -y \ + build-essential \ + libncurses-dev \ + bison \ + flex \ + libssl-dev \ + libelf-dev \ + bc \ + wget \ + git \ + kmod \ + apt-src \ + vim \ + curl \ + file + +RUN sed -Ei 's/^# deb-src /deb-src /' /etc/apt/sources.list +RUN apt update +RUN mkdir /workspace +RUN cd /workspace && apt source linux-image-unsigned-5.15.0-25-generic + +RUN cd /workspace/linux-5.15.0 && \ + cd scripts && \ + chmod +x pahole-version.sh && \ + cd .. && \ + make defconfig && \ + make -j $(nproc) && \ + make INSTALL_MOD_PATH=/workspace/output modules_install + +RUN git clone https://github.com/gem5/gem5.git --depth=1 --filter=blob:none --no-checkout --sparse --single-branch --branch=release-staging-v24-1-1-0 && \ + cd gem5 && \ + git sparse-checkout add util/m5 && \ + git sparse-checkout add util/gem5_bridge && \ + git sparse-checkout add include && \ + git checkout + +RUN cd gem5/util/gem5_bridge && \ + make KMAKEDIR=/workspace/linux-5.15.0 INSTALL_MOD_PATH=/workspace/output build install + +RUN cd /workspace/output/lib/modules/5.15.168 && \ + rm -rf build source + +FROM scratch AS export-stage +COPY --from=stage1 /workspace/output/lib/modules . +COPY --from=stage1 workspace/linux-5.15.0/vmlinux . \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-22.04/copy_modules_to_host.sh b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-22.04/copy_modules_to_host.sh new file mode 100755 index 000000000..b8e817a46 --- /dev/null +++ b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-22.04/copy_modules_to_host.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +DOCKERFILE="Dockerfile" +OUTPUT="my-arm-5.15.168-kernel" + +# Build the Docker image +DOCKER_BUILDKIT=1 docker build --no-cache \ + --file "$DOCKERFILE" \ + --output "$OUTPUT" . + +echo "Build completed for $1: Output directory is $OUTPUT" \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-24.04/Dockerfile b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-24.04/Dockerfile new file mode 100644 index 000000000..737adaf1a --- /dev/null +++ b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-24.04/Dockerfile @@ -0,0 +1,43 @@ +# Start from Ubuntu 24.04 base image +FROM ubuntu:24.04 AS stage1 + +# Install necessary packages for kernel and module build +RUN apt update && apt install -y \ + build-essential \ + libncurses-dev \ + bison \ + flex \ + libssl-dev \ + libelf-dev \ + bc \ + wget \ + git \ + kmod + + +RUN sed -i 's/^Types: deb$/Types: deb deb-src/' /etc/apt/sources.list.d/ubuntu.sources +RUN apt update +RUN mkdir /workspace +RUN cd /workspace && apt source linux-image-unsigned-6.8.0-47-generic + +RUN cd /workspace/linux-6.8.0 && \ + make defconfig && \ + make -j $(nproc) && \ + make INSTALL_MOD_PATH=/workspace/output modules_install + +RUN git clone https://github.com/gem5/gem5.git --depth=1 --filter=blob:none --no-checkout --sparse --single-branch --branch=release-staging-v24-1-1-0 && \ + cd gem5 && \ + git sparse-checkout add util/m5 && \ + git sparse-checkout add util/gem5_bridge && \ + git sparse-checkout add include && \ + git checkout + +RUN cd gem5/util/gem5_bridge && \ + make KMAKEDIR=/workspace/linux-6.8.0 INSTALL_MOD_PATH=/workspace/output build install + +RUN cd /workspace/output/lib/modules/6.8.12 && \ + rm -rf build + +FROM scratch AS export-stage +COPY --from=stage1 /workspace/output/lib/modules . +COPY --from=stage1 /workspace/linux-6.8.0/vmlinux . \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-24.04/copy_modules_to_host.sh b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-24.04/copy_modules_to_host.sh new file mode 100755 index 000000000..1d023273a --- /dev/null +++ b/src/ubuntu-generic-diskimages/kernel-and-modules/arm-ubuntu-24.04/copy_modules_to_host.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +DOCKERFILE="./Dockerfile" +OUTPUT="my-arm-6.8.12-kernel" + +# Build the Docker image +DOCKER_BUILDKIT=1 docker build --no-cache \ + --file "$DOCKERFILE" \ + --output "$OUTPUT" . + +echo "Build completed for $1: Output directory is $OUTPUT" \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/packer-scripts/arm-ubuntu.pkr.hcl b/src/ubuntu-generic-diskimages/packer-scripts/arm-ubuntu.pkr.hcl new file mode 100644 index 000000000..86634e048 --- /dev/null +++ b/src/ubuntu-generic-diskimages/packer-scripts/arm-ubuntu.pkr.hcl @@ -0,0 +1,166 @@ +packer { + required_plugins { + qemu = { + source = "github.com/hashicorp/qemu" + version = "~> 1" + } + } +} + +variable "image_name" { + type = string + default = "arm-ubuntu" +} + +variable "ssh_password" { + type = string + default = "12345" +} + +variable "ssh_username" { + type = string + default = "gem5" +} + +variable "ubuntu_version" { + type = string + default = "24.04" + validation { + condition = contains(["22.04", "24.04"], var.ubuntu_version) + error_message = "Ubuntu version must be either 22.04 or 24.04." + } +} + +locals { + iso_data = { + "22.04" = { + iso_url = "https://old-releases.ubuntu.com/releases/jammy/ubuntu-22.04-live-server-arm64.iso" + iso_checksum = "sha256:c209ab013280d3cd26a344def60b7b19fbb427de904ea285057d94ca6ac82dd5" + output_dir = "arm-disk-image-22-04" + http_directory = "http/arm-22-04" + modules_dir = "kernel-and-modules/arm-ubuntu-22.04/my-arm-5.15.168-kernel/5.15.168" + } + "24.04" = { + iso_url = "https://cdimage.ubuntu.com/releases/24.04/release/ubuntu-24.04-live-server-arm64.iso" + iso_checksum = "sha256:d2d9986ada3864666e36a57634dfc97d17ad921fa44c56eeaca801e7dab08ad7" + output_dir = "arm-disk-image-24-04" + http_directory = "http/arm-24-04" + modules_dir = "kernel-and-modules/arm-ubuntu-24.04/my-arm-6.8.12-kernel/6.8.12" + } + } +} + +variable "use_kvm" { + type = string + default = "true" + validation { + condition = contains(["true", "false"], var.use_kvm) + error_message = "KVM option must be either 'true' or 'false'." + } +} + +locals { + qemuargs_base = [ + ["-boot", "order=dc"], + ["-bios", "./files/flash0.img"], + ["-machine", "virt"], + ["-machine", "gic-version=3"], + ["-device", "virtio-gpu-pci"], + ["-device", "qemu-xhci"], + ["-device", "usb-kbd"], + ] + + qemuargs_kvm = concat(local.qemuargs_base,[ + ["-cpu", "host"], + ["-enable-kvm"] + ]) + + qemuargs_no_kvm = concat(local.qemuargs_base,[ + ["-cpu", "cortex-a57"] + ]) + + qemuargs = var.use_kvm == "true" ? local.qemuargs_kvm : local.qemuargs_no_kvm +} + +source "qemu" "initialize" { + boot_command = [ + "c", + "linux /casper/vmlinuz autoinstall ds=nocloud-net\\;s=http://{{.HTTPIP}}:{{.HTTPPort}}/ --- ", + "", + "initrd /casper/initrd", + "", + "boot", + "", + "" + ] + cpus = "4" + disk_size = "4600" + format = "raw" + headless = "true" + http_directory = local.iso_data[var.ubuntu_version].http_directory + iso_checksum = local.iso_data[var.ubuntu_version].iso_checksum + iso_urls = [local.iso_data[var.ubuntu_version].iso_url] + memory = "8192" + output_directory = local.iso_data[var.ubuntu_version].output_dir + qemu_binary = "/usr/bin/qemu-system-aarch64" + qemuargs = local.qemuargs + shutdown_command = "echo '${var.ssh_password}'|sudo -S shutdown -P now" + ssh_password = "${var.ssh_password}" + ssh_username = "${var.ssh_username}" + ssh_wait_timeout = "60m" + vm_name = "${var.image_name}" + ssh_handshake_attempts = "1000" +} + +build { + sources = ["source.qemu.initialize"] + + provisioner "file" { + destination = "/home/gem5/" + source = "files/exit.sh" + } + + provisioner "file" { + destination = "/home/gem5/" + source = "files/arm/gem5_init.sh" + } + + provisioner "file" { + destination = "/home/gem5/" + source = "files/arm/after_boot.sh" + } + + provisioner "file" { + destination = "/home/gem5/" + source = "files/serial-getty@.service-override.conf" + } + + provisioner "file" { + destination = "/home/gem5/" + source = "${local.iso_data[var.ubuntu_version].modules_dir}" + } + + provisioner "shell" { + execute_command = "echo '${var.ssh_password}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'" + scripts = ["scripts/install-common-packages.sh", + "scripts/increase-system-entropy-for-arm-disk.sh", + "scripts/update-modules-arm-${var.ubuntu_version}.sh", + "scripts/update-gem5-init.sh", + "scripts/install-gem5-bridge.sh", + "scripts/install-user-packages.sh", + ] + environment_vars = ["ISA=arm64"] + expect_disconnect = true + } + + provisioner "shell" { + scripts = ["scripts/install-user-benchmarks.sh"] + } + + provisioner "shell" { + execute_command = "echo '${var.ssh_password}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'" + scripts = ["scripts/disable-systemd-services-arm.sh","scripts/disable-network.sh"] + expect_disconnect = true + } + +} diff --git a/src/ubuntu-generic-diskimages/packer-scripts/x86-ubuntu.pkr.hcl b/src/ubuntu-generic-diskimages/packer-scripts/x86-ubuntu.pkr.hcl new file mode 100644 index 000000000..5c9c8aafa --- /dev/null +++ b/src/ubuntu-generic-diskimages/packer-scripts/x86-ubuntu.pkr.hcl @@ -0,0 +1,128 @@ +packer { + required_plugins { + qemu = { + source = "github.com/hashicorp/qemu" + version = "~> 1" + } + } +} + +variable "image_name" { + type = string + default = "x86-ubuntu" +} + +variable "ssh_password" { + type = string + default = "12345" +} + +variable "ssh_username" { + type = string + default = "gem5" +} + +variable "ubuntu_version" { + type = string + default = "24.04" + validation { + condition = contains(["22.04", "24.04"], var.ubuntu_version) + error_message = "Ubuntu version must be either 22.04 or 24.04." + } +} + +locals { + iso_data = { + "22.04" = { + iso_url = "https://old-releases.ubuntu.com/releases/jammy/ubuntu-22.04.2-live-server-amd64.iso" + iso_checksum = "sha256:5e38b55d57d94ff029719342357325ed3bda38fa80054f9330dc789cd2d43931" + output_dir = "x86-disk-image-22-04" + } + "24.04" = { + iso_url = "https://old-releases.ubuntu.com/releases/noble/ubuntu-24.04-live-server-amd64.iso" + iso_checksum = "sha256:8762f7e74e4d64d72fceb5f70682e6b069932deedb4949c6975d0f0fe0a91be3" + output_dir = "x86-disk-image-24-04" + } + } +} + +source "qemu" "initialize" { + accelerator = "kvm" + boot_command = ["e", + "", + "", + "autoinstall ds=nocloud-net\\;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ ---", + "" + ] + cpus = "4" + disk_size = "5000" + format = "raw" + headless = "true" + http_directory = "http/x86" + iso_checksum = local.iso_data[var.ubuntu_version].iso_checksum + iso_urls = [local.iso_data[var.ubuntu_version].iso_url] + memory = "8192" + output_directory = local.iso_data[var.ubuntu_version].output_dir + qemu_binary = "/usr/bin/qemu-system-x86_64" + qemuargs = [["-cpu", "host"], ["-display", "none"]] + shutdown_command = "echo '${var.ssh_password}'|sudo -S shutdown -P now" + ssh_password = "${var.ssh_password}" + ssh_username = "${var.ssh_username}" + ssh_wait_timeout = "60m" + vm_name = "${var.image_name}" + ssh_handshake_attempts = "1000" +} + +build { + sources = ["source.qemu.initialize"] + + provisioner "file" { + destination = "/home/gem5/" + source = "files/exit.sh" + } + + provisioner "file" { + destination = "/home/gem5/" + source = "files/x86/gem5_init.sh" + } + + provisioner "file" { + destination = "/home/gem5/" + source = "files/x86/after_boot.sh" + } + + provisioner "file" { + destination = "/home/gem5/" + source = "files/serial-getty@.service-override.conf" + } + + provisioner "shell" { + execute_command = "echo '${var.ssh_password}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'" + scripts = ["scripts/install-common-packages.sh", + "scripts/extract-x86-kernel.sh", + "scripts/update-gem5-init.sh", + "scripts/install-gem5-bridge.sh", + "scripts/install-user-packages.sh", + ] + environment_vars = ["ISA=x86"] + expect_disconnect = true + } + + provisioner "shell" { + scripts = ["scripts/install-user-benchmarks.sh"] + } + + provisioner "shell" { + execute_command = "echo '${var.ssh_password}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'" + scripts = ["scripts/disable-systemd-services-x86.sh", + "scripts/disable-network.sh" + ] + expect_disconnect = true + } + + provisioner "file" { + source = "/home/gem5/vmlinux-x86-ubuntu" + destination = "./${local.iso_data[var.ubuntu_version].output_dir}/vmlinux-x86-ubuntu" + direction = "download" + } +} diff --git a/src/ubuntu-generic-diskimages/scripts/disable-network.sh b/src/ubuntu-generic-diskimages/scripts/disable-network.sh new file mode 100755 index 000000000..a37382379 --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/disable-network.sh @@ -0,0 +1,12 @@ +# Disable network by default +echo "Disabling network by default" +echo "See README.md for instructions on how to enable network" +if [ -f /etc/netplan/50-cloud-init.yaml ]; then + mv /etc/netplan/50-cloud-init.yaml /etc/netplan/50-cloud-init.yaml.bak +elif [ -f /etc/netplan/00-installer-config.yaml ]; then + mv /etc/netplan/00-installer-config.yaml /etc/netplan/00-installer-config.yaml.bak + netplan apply +fi +# Disable systemd service that waits for network to be online +systemctl disable systemd-networkd-wait-online.service +systemctl mask systemd-networkd-wait-online.service \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/disable-systemd-services-arm.sh b/src/ubuntu-generic-diskimages/scripts/disable-systemd-services-arm.sh new file mode 100644 index 000000000..a34bb1eab --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/disable-systemd-services-arm.sh @@ -0,0 +1,48 @@ +#!/bin/bash + +# Copyright (c) 2024 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Disabling systemd services for arm architecture..." + +# Mask systemd-random-seed to avoid long waits for entropy in gem5 simulations +systemctl mask systemd-random-seed.service + +# Disable multipathd — not needed for single disk setup or simulation +systemctl disable multipathd.service + +# Disable snapd and its socket — snap package manager is not used in gem5 +systemctl disable snapd.service snapd.socket + +# Disable periodic system maintenance timers to reduce boot time +systemctl disable apt-daily.timer apt-daily-upgrade.timer fstrim.timer + +# Disable accounts-daemon — manages desktop login accounts (not needed headless) +systemctl disable accounts-daemon.service + +# Disable lvm2-monitor — not required unless simulating logical volumes +systemctl disable lvm2-monitor.service + +# Disable AppArmor — optional security daemon that slows boot and isn't needed +systemctl disable apparmor.service snapd.apparmor.service + +# Disable ModemManager — manages cellular devices, irrelevant in gem5 +systemctl mask ModemManager.service + +# Disable udisks2 — disk hotplug and automounting service, not useful in static sim +systemctl disable udisks2.service + +# Disable system time sync — not needed for simulated time environments +systemctl disable systemd-timesyncd.service + +# Disable rsyslog — persistent logging not required and slows simulation +systemctl disable rsyslog.service + +# Switch default target to multi-user (no GUI) +sudo systemctl set-default multi-user.target + +# Mask plymouth — graphical boot splash screen, not needed in headless mode +systemctl mask plymouth-start.service plymouth-quit.service plymouth-read-write.service + + +echo "completed disabling systemd services for arm." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/disable-systemd-services-x86.sh b/src/ubuntu-generic-diskimages/scripts/disable-systemd-services-x86.sh new file mode 100755 index 000000000..2c7d1077a --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/disable-systemd-services-x86.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +# Copyright (c) 2024 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Disabling systemd services for x86 architecture..." + +# Disable multipathd service +systemctl disable multipathd.service + +# Disable thermald service +systemctl disable thermald.service + +# Disable snapd services and socket +systemctl disable snapd.service snapd.socket + +# Disable unnecessary timers +systemctl disable apt-daily.timer apt-daily-upgrade.timer fstrim.timer + +# Disable accounts-daemon +systemctl disable accounts-daemon.service + +# Disable LVM monitoring service +systemctl disable lvm2-monitor.service + +# Switch default target to multi-user (no GUI) +systemctl set-default multi-user.target + +# Optionally disable AppArmor if not required +systemctl disable apparmor.service snapd.apparmor.service + +echo "completed disabling systemd services for x86." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/extract-x86-kernel.sh b/src/ubuntu-generic-diskimages/scripts/extract-x86-kernel.sh new file mode 100755 index 000000000..64007594f --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/extract-x86-kernel.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +# Make sure the headers are installed to extract the kernel that DKMS +# packages will be built against. +sudo apt -y install "linux-headers-$(uname -r)" "linux-modules-extra-$(uname -r)" + +echo "Extracting linux kernel $(uname -r) to /home/gem5/vmlinux-x86-ubuntu" +sudo bash -c "/usr/src/linux-headers-$(uname -r)/scripts/extract-vmlinux /boot/vmlinuz-$(uname -r) > /home/gem5/vmlinux-x86-ubuntu" \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/increase-system-entropy-for-arm-disk.sh b/src/ubuntu-generic-diskimages/scripts/increase-system-entropy-for-arm-disk.sh new file mode 100644 index 000000000..245f54c2d --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/increase-system-entropy-for-arm-disk.sh @@ -0,0 +1,37 @@ + +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +# Increase system entropy for ARM disk images to reduce boot time in gem5. +# Some systemd services wait for sufficient entropy before proceeding, causing delays. +# By increasing entropy early, these services start without unnecessary waiting. +sudo apt-get install -y haveged + +# Update the DAEMON_ARGS environment variable in /etc/default/haveged +echo "Updating DAEMON_ARGS in /etc/default/haveged..." +if grep -q '^#DAEMON_ARGS=""' /etc/default/haveged; then + # If DAEMON_ARGS is commented out, uncomment and set it + sudo sed -i 's/#DAEMON_ARGS=""/DAEMON_ARGS="-w 1024"/' /etc/default/haveged +elif grep -q '^DAEMON_ARGS=' /etc/default/haveged; then + # If DAEMON_ARGS exists, update its value + sudo sed -i 's/^DAEMON_ARGS=.*/DAEMON_ARGS="-w 1024"/' /etc/default/haveged +else + # If DAEMON_ARGS is missing, add it + echo 'DAEMON_ARGS="-w 1024"' | sudo tee -a /etc/default/haveged > /dev/null +fi + +# Start the haveged service +echo "Starting the haveged service..." +sudo systemctl start haveged + +# Enable the haveged service to start at boot +echo "Enabling the haveged service to start at boot..." +sudo systemctl enable haveged + +# Check the status of haveged +echo "Checking the status of the haveged service..." +sudo systemctl status haveged + +echo "Haveged installation and setup complete!" diff --git a/src/ubuntu-generic-diskimages/scripts/install-common-packages.sh b/src/ubuntu-generic-diskimages/scripts/install-common-packages.sh new file mode 100755 index 000000000..3956e5ace --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/install-common-packages.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Installing common packages." + + +echo "Installing serial service override for autologin after systemd." +mkdir /etc/systemd/system/serial-getty@.service.d/ +mv serial-getty@.service-override.conf /etc/systemd/system/serial-getty@.service.d/override.conf + +# Installing the packages in this script instead of the user-data +# file dueing ubuntu autoinstall. The reason is that sometimes +# the package install failes. This method is more reliable. + +echo "Installing packages required for gem5-bridge (m5) and libm5." +apt-get update +apt-get install -y scons +apt-get install -y git +apt-get install -y vim +apt-get install -y build-essential + +# Add after_boot.sh to bashrc in the gem5 user account +# This will run the script after the user automatically logs in +echo "Adding after_boot.sh to the gem5 user's .bashrc." +echo -e "\nif [ -z \"\$AFTER_BOOT_EXECUTED\" ]; then\n export AFTER_BOOT_EXECUTED=1\n /home/gem5/after_boot.sh\nfi\n" >> /home/gem5/.bashrc + +# Remove the motd +rm /etc/update-motd.d/* + +echo "Installation of common packages done." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/install-gem5-bridge.sh b/src/ubuntu-generic-diskimages/scripts/install-gem5-bridge.sh new file mode 100755 index 000000000..eb0a2688e --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/install-gem5-bridge.sh @@ -0,0 +1,56 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +# Build and install the gem5-bridge (m5) binary, library, and headers +echo "Building and installing gem5-bridge (m5) and libm5." + +# Ensure the ISA environment variable is set +if [ -z "$ISA" ]; then + echo "Error: ISA environment variable is not set." + exit 1 +fi + +# Just get the files we need +git clone https://github.com/gem5/gem5.git --depth=1 --filter=blob:none --no-checkout --sparse --single-branch --branch=release-staging-v24-1-1-0 +pushd gem5 +# Checkout just the files we need +git sparse-checkout add util/m5 +git sparse-checkout add util/gem5_bridge +git sparse-checkout add include +git checkout +# Install the headers globally so that other benchmarks can use them +cp -r include/gem5 /usr/local/include/ + +# Build the library and binary +pushd util/m5 +scons build/${ISA}/out/m5 +cp build/${ISA}/out/m5 /usr/local/bin/ +cp build/${ISA}/out/libm5.a /usr/local/lib/ +popd # util/m5 + +if [ "${ISA}" = "x86" ]; then + # We need to build the kernel module for x86 + # but not for ARM as we are copying the pre-built + # kernel module for ARM from host to the disk images + pushd util/gem5_bridge + make build install + depmod --quick + popd +fi + +popd # gem5 + +# rename the m5 binary to gem5-bridge +mv /usr/local/bin/m5 /usr/local/bin/gem5-bridge +# Set the setuid bit on the m5 binary +chmod 4755 /usr/local/bin/gem5-bridge +chmod u+s /usr/local/bin/gem5-bridge + +#create a symbolic link to the gem5 binary for backward compatibility +ln -s /usr/local/bin/gem5-bridge /usr/local/bin/m5 + +# delete the git repo for gem5 +rm -rf gem5 +echo "Done building and installing gem5-bridge (m5) and libm5." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/install-user-benchmarks.sh b/src/ubuntu-generic-diskimages/scripts/install-user-benchmarks.sh new file mode 100755 index 000000000..2e260d62c --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/install-user-benchmarks.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Installing benchmarks..." + +# You should write this script with the following assumptions: +# 1. common-packages and user-packages are installed; they are specified in +# install-common-packages.sh and install-user-packages.sh, respectively. +# 2. This script is run without sudo access. +# 3. All your files that you specify in your .pkr.hcl file are copied into +# the disk. + +echo "Done installing benchmarks." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/install-user-packages.sh b/src/ubuntu-generic-diskimages/scripts/install-user-packages.sh new file mode 100755 index 000000000..570b0341a --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/install-user-packages.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Installing user packages..." + +# Put your package installation commands here +# NOTE: Since we use packer we can not interact with the process of apt-get +# upgrade/install, I recommend that you add `Dpkg::Options::="--force-confnew"` +# to your commands here. See example below on how to update, upgrade, and +# install packages for cmake, python3-pip, gfortran, and openmpi, ... +# sudo apt-get -y update +# sudo apt-get -y -o Dpkg::Options::="--force-confnew" upgrade +# sudo apt-get -y -o Dpkg::Options::="--force-confnew" install \ +# python3-pip gfortran cmake openmpi-bin libopenmpi-dev + +echo "Done installing user packages." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/update-gem5-init.sh b/src/ubuntu-generic-diskimages/scripts/update-gem5-init.sh new file mode 100755 index 000000000..dfcf0c513 --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/update-gem5-init.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Installing the gem5 init script in /sbin." + +mv /home/gem5/gem5_init.sh /sbin/ +mv /sbin/init /sbin/init.gem5.bak +ln -s /sbin/gem5_init.sh /sbin/init + +echo "Done installing the gem5 init script as the init process." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/update-modules-arm-22.04.sh b/src/ubuntu-generic-diskimages/scripts/update-modules-arm-22.04.sh new file mode 100755 index 000000000..68b1d6a6f --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/update-modules-arm-22.04.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Updating modules." + +# moving modules to the correct location +mv /home/gem5/5.15.168 /lib/modules/5.15.168 +depmod --quick -a 5.15.168 +update-initramfs -u -k 5.15.168 + +echo "Modules updated." \ No newline at end of file diff --git a/src/ubuntu-generic-diskimages/scripts/update-modules-arm-24.04.sh b/src/ubuntu-generic-diskimages/scripts/update-modules-arm-24.04.sh new file mode 100755 index 000000000..cf5f904df --- /dev/null +++ b/src/ubuntu-generic-diskimages/scripts/update-modules-arm-24.04.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Copyright (c) 2025 The Regents of the University of California. +# SPDX-License-Identifier: BSD 3-Clause + +echo "Updating modules." + +# moving modules to the correct location +mv /home/gem5/6.8.12 /lib/modules/6.8.12 +depmod --quick -a 6.8.12 +update-initramfs -u -k 6.8.12 + +echo "Modules updated." \ No newline at end of file diff --git a/src/x86-ubuntu/.gitignore b/src/x86-ubuntu/.gitignore deleted file mode 100644 index 0cb712122..000000000 --- a/src/x86-ubuntu/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -**packer -**packer_*.zip -packer_cache/ -disk-image/ -disk-image-ubuntu-24-04/ diff --git a/src/x86-ubuntu/BUILDING.md b/src/x86-ubuntu/BUILDING.md deleted file mode 100644 index 3f798e0a0..000000000 --- a/src/x86-ubuntu/BUILDING.md +++ /dev/null @@ -1,112 +0,0 @@ ---- -title: Building the base x86-ubuntu image -authors: - - Harshil Patel ---- - -This document provides instructions to create the "x86-ubuntu" image. This image is a 22.04 Ubuntu image. - -## Directory map - -- `files`: Files that are copied to the disk image. -- `scripts`: Scripts run on the disk image after installation. -- `http`: cloud-init Ubuntu autoinstall files. -- `disk-image`: The disk image output directory. - -## Disk Image - -Run `./build.sh` in the `x86-ubuntu` directory to build the disk image. -This will download the packer binary, initialize packer, and build the disk image. - -Note: This can take a while to run. -You will see `qemu.initialize: Waiting for SSH to become available...` while the installation is running. -You can watch the installation with a VNC viewer. -See [Troubleshooting](#troubleshooting) for more information. - -## Kernel - -A kernel is also extracted from the disk image during the post-installation process. -The latest headers and modules are installed using apt, before extracting the kernel using the `extract-vmlinux` script provided in ubuntu. The extracted kernel is placed at `/home/gem5/vmlinux-x86-ubuntu`. -The extracted kernel does not have a version its name, but the kernel version is printed as before the extraction in `post-installation.sh` script. This extracted kernel can be used as a resource for gem5 simulations and is not limited to just be used with this disk image. - -The kernel is extracted using packer's file provisioner with `direction=download` which would copy a file from the image to the host machine. The path specifying in the provisioner copies the file `/home/gem5/vmlinux-x86-ubuntu` to the output directory `disk-image`. - -## Changes from the base Ubuntu 22.04 image - -- The default user is `gem5` with password `12345`. -- The `m5` utility is renamed to `gem5-bridge`. - - `gem5-bridge` utility is installed in `/usr/local/bin/gem5-bridge`. - - `gem5-bridge` has a symlink to `m5` for backwards compatibility. - - `libm5` is installed in `/usr/local/lib/` and the headers for `libm5` are installed in `/usr/local/include/m5`. -- The `.bashrc` file checks to see if there is anything in the `gem5-bridge readfile` command and executes the script if there is. -- The init process is modified to provide better annotations and more exit event. For more details see the [Init Process and Exit events](README.md#init-process-and-exit-events). - - The `gem5-bridge exit` command is run after the linux kernel initialization by default. - - If the `no_systemd` boot option is passed, systemd is not run and the user is dropped to a terminal. - - If the `interactive` boot option is passed, the `gem5-bridge exit` command is not run after the linux kernel initialization. -- Networking is disabled by moving the `/etc/netplan/00-installer-config.yaml` file to `/etc/netplan/00-installer-config.yaml.bak`. The `systemd-networkd-wait-online.service` is also disabled. - - If you want to enable networking, you need to modify the disk image and move the file `/etc/netplan/00-installer-config.yaml.bak` to `/etc/netplan/00-installer-config.yaml`. - To re-enable `systemd-networkd-wait-online.service`, first, unmask the service with `sudo systemctl unmask systemd-networkd-wait-online.service` and then enable the service to start with `sudo systemctl enable systemd-networkd-wait-online.service`. - If you require the service to start immediately without waiting for the next boot then also run the following: - `sudo systemctl start systemd-networkd-wait-online.service`. - -## Extending the Disk Image - -### Customization of Post-Installation Processes - -- **Replace `gem5_init.sh`**: This script is what executes as the Linux init process (pid=0) immediately after Linux boot. If you have a custom initialization script, replace the default `gem5_init.sh` in both `x86-ubuntu.pkr.hcl` and `post-installation.sh` to integrate your custom initialization process. -- **Replace `gem5_init.sh`**: If you have a custom initialization script, replace the default `gem5_init.sh` in both `x86-ubuntu.pkr.hcl` and `post-installation.sh` to integrate your custom initialization process. - -### Handling the After-Boot Script - -- **Persistent Execution of `after-boot.sh`**: The `after-boot.sh` script executes at first login. -To avoid its infinite execution, we incorporated a conditional check in `post-installation.sh` similar to the following: - - ```sh - echo -e "\nif [ -z \"\$AFTER_BOOT_EXECUTED\" ]; then\n export AFTER_BOOT_EXECUTED=1\n /home/gem5/after_boot.sh\nfi\n" >> /home/gem5/.bashrc - ``` - - This ensures `after-boot.sh` runs only once per session by setting an environment variable. - -### Adjusting File Permissions - -- **Setting Permissions for `gem5-bridge`**: Since the default user is not root, `gem5-bridge` requires root permissions. Apply setuid to grant these permissions: - - ```sh - chmod u+s /path/to/gem5-bridge - ``` - -## Creating a Disk Image from Scratch - -### Automated Ubuntu Installation - -- **Ubuntu Autoinstall**: We leveraged Ubuntu's autoinstall feature for an automated setup process. -- **Acquire `user-data` File**: To get the `user-data` file, install your desired Ubuntu version on a machine or VM. Post-installation, retrieve the `autoinstall-user-data` from `/var/log/installer/autoinstall-user-data` after the system's first reboot. -The `user-data` file in this repo, is made by selecting all default options except a minimal server installation. - -### Configuration and Directory Structure - -- **Determine QEMU Arguments**: Identify the QEMU arguments required for booting the system. These vary by ISA and mirror the arguments used for booting a disk image in QEMU. -- **Directory Organization**: Arrange your source directory to include the `user-data` file and any additional content. Utilize the `provisioner` section for transferring extra files into the disk image, ensuring all necessary resources are embedded within your custom disk image. - -## Troubleshooting - -To see what `packer` is doing, you can use the environment variable `PACKER_LOG=INFO` when running `./build.sh`. - -Packer seems to have a bug that aborts the VM build after 2-5 minutes regardless of the ssh_timeout setting. -As a workaround, set ssh_handshake_attempts to a high value. -Thus, I have `ssh_handshake_attempts = 1000`. -From - -To see what is happening while packer is running, you can connect with a vnc viewer. -The port for the vnc viewer is shown in the terminal while packer is running. - -You can mount the disk image to see what is inside. -Use the following command to mount the disk image: -(note `norecovery` is needed if you get the error "cannot mount ... read-only") - -```sh -mkdir x86-ubuntu/mount -sudo mount -o loop,offset=2097152,norecovery x86-ubuntu/x86-ubuntu-image/x86-ubuntu x86-ubuntu/mount -``` - -Useful documentation: diff --git a/src/x86-ubuntu/build.sh b/src/x86-ubuntu/build.sh deleted file mode 100755 index c103b8621..000000000 --- a/src/x86-ubuntu/build.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2024 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -PACKER_VERSION="1.10.0" - -if [ ! -f ./packer ]; then - wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip; - unzip packer_${PACKER_VERSION}_linux_amd64.zip; - rm packer_${PACKER_VERSION}_linux_amd64.zip; -fi - -# Check if the configuration file variable is provided -if [ -z "$1" ]; then - echo "Usage: $0 " - exit 1 -fi - -# Store the configuration file name from the command line argument -config_file="$1" - -# Check if the specified configuration file exists -if [ -f "$config_file" ]; then - # Install the needed plugins - ./packer init "$config_file" - # Build the image - ./packer build "$config_file" -else - echo "Error: Configuration file '$config_file' not found." - exit 1 -fi diff --git a/src/x86-ubuntu/files/exit.sh b/src/x86-ubuntu/files/exit.sh deleted file mode 100755 index 4b147e01f..000000000 --- a/src/x86-ubuntu/files/exit.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -# Copyright (c) 2020 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -m5 exit diff --git a/src/x86-ubuntu/files/serial-getty@.service b/src/x86-ubuntu/files/serial-getty@.service deleted file mode 100644 index 121e8e355..000000000 --- a/src/x86-ubuntu/files/serial-getty@.service +++ /dev/null @@ -1,46 +0,0 @@ -# SPDX-License-Identifier: LGPL-2.1+ -# -# This file is part of systemd. -# -# systemd is free software; you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation; either version 2.1 of the License, or -# (at your option) any later version. - -[Unit] -Description=Serial Getty on %I -Documentation=man:agetty(8) man:systemd-getty-generator(8) -Documentation=http://0pointer.de/blog/projects/serial-console.html -BindsTo=dev-%i.device -After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target -After=rc-local.service - -# If additional gettys are spawned during boot then we should make -# sure that this is synchronized before getty.target, even though -# getty.target didn't actually pull it in. -Before=getty.target -IgnoreOnIsolate=yes - -# IgnoreOnIsolate causes issues with sulogin, if someone isolates -# rescue.target or starts rescue.service from multi-user.target or -# graphical.target. -Conflicts=rescue.service -Before=rescue.service - -[Service] -# The '-o' option value tells agetty to replace 'login' arguments with an -# option to preserve environment (-p), followed by '--' for safety, and then -# the entered username. -ExecStart=-/sbin/agetty --autologin gem5 --keep-baud 115200,38400,9600 %I $TERM -Type=idle -Restart=always -UtmpIdentifier=%I -TTYPath=/dev/%I -TTYReset=yes -TTYVHangup=yes -KillMode=process -IgnoreSIGPIPE=no -SendSIGHUP=yes - -[Install] -WantedBy=getty.target diff --git a/src/x86-ubuntu/scripts/post-installation.sh b/src/x86-ubuntu/scripts/post-installation.sh deleted file mode 100755 index 0b3df372f..000000000 --- a/src/x86-ubuntu/scripts/post-installation.sh +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2024 The Regents of the University of California. -# SPDX-License-Identifier: BSD 3-Clause - -echo 'Post Installation Started' - -# Installing the packages in this script instead of the user-data -# file dueing ubuntu autoinstall. The reason is that sometimes -# the package install failes. This method is more reliable. -echo 'installing packages' -apt-get update -apt-get install -y scons -apt-get install -y git -apt-get install -y vim -apt-get install -y build-essential - -echo "Installing serial service for autologin after systemd" -mv /home/gem5/serial-getty@.service /lib/systemd/system/ - -# Make sure the headers are installed to extract the kernel that DKMS -# packages will be built against. -sudo apt -y install "linux-headers-$(uname -r)" "linux-modules-extra-$(uname -r)" - -echo "Extracting linux kernel $(uname -r) to /home/gem5/vmlinux-x86-ubuntu" -sudo bash -c "/usr/src/linux-headers-$(uname -r)/scripts/extract-vmlinux /boot/vmlinuz-$(uname -r) > /home/gem5/vmlinux-x86-ubuntu" - -echo "Installing the gem5 init script in /sbin" -mv /home/gem5/gem5_init.sh /sbin -mv /sbin/init /sbin/init.old -ln -s /sbin/gem5_init.sh /sbin/init - -# Add after_boot.sh to bashrc in the gem5 user account -# This will run the script after the user automatically logs in -echo -e "\nif [ -z \"\$AFTER_BOOT_EXECUTED\" ]; then\n export AFTER_BOOT_EXECUTED=1\n /home/gem5/after_boot.sh\nfi\n" >> /home/gem5/.bashrc - -# Remove the motd -rm /etc/update-motd.d/* - -# Build and install the gem5-bridge (m5) binary, library, and headers -echo "Building and installing gem5-bridge (m5) and libm5" - -# Just get the files we need -git clone https://github.com/gem5/gem5.git --depth=1 --filter=blob:none --no-checkout --sparse --single-branch --branch=stable -pushd gem5 -# Checkout just the files we need -git sparse-checkout add util/m5 -git sparse-checkout add include -git checkout -# Install the headers globally so that other benchmarks can use them -cp -r include/gem5 /usr/local/include/\ - -# Build the library and binary -pushd util/m5 -scons build/x86/out/m5 -cp build/x86/out/m5 /usr/local/bin/ -cp build/x86/out/libm5.a /usr/local/lib/ -popd -popd - -# rename the m5 binary to gem5-bridge -mv /usr/local/bin/m5 /usr/local/bin/gem5-bridge -# Set the setuid bit on the m5 binary -chmod 4755 /usr/local/bin/gem5-bridge -chmod u+s /usr/local/bin/gem5-bridge - -#create a symbolic link to the gem5 binary for backward compatibility -ln -s /usr/local/bin/gem5-bridge /usr/local/bin/m5 - -# delete the git repo for gem5 -rm -rf gem5 -echo "Done building and installing gem5-bridge (m5) and libm5" - -# You can extend this script to install your own packages here or by modifying the `x86-ubuntu.pkr.hcl` file. - -# Disable network by default -echo "Disabling network by default" -echo "See README.md for instructions on how to enable network" -if [ -f /etc/netplan/50-cloud-init.yaml ]; then - mv /etc/netplan/50-cloud-init.yaml /etc/netplan/50-cloud-init.yaml.bak -elif [ -f /etc/netplan/00-installer-config.yaml ]; then - mv /etc/netplan/00-installer-config.yaml /etc/netplan/00-installer-config.yaml.bak - netplan apply -fi -# Disable systemd service that waits for network to be online -systemctl disable systemd-networkd-wait-online.service -systemctl mask systemd-networkd-wait-online.service - -echo "Post Installation Done" diff --git a/src/x86-ubuntu/x86-ubuntu-24-04.pkr.hcl b/src/x86-ubuntu/x86-ubuntu-24-04.pkr.hcl deleted file mode 100644 index accc15da8..000000000 --- a/src/x86-ubuntu/x86-ubuntu-24-04.pkr.hcl +++ /dev/null @@ -1,86 +0,0 @@ -packer { - required_plugins { - qemu = { - source = "github.com/hashicorp/qemu" - version = "~> 1" - } - } -} - -variable "image_name" { - type = string - default = "x86-ubuntu-24-04" -} - -variable "ssh_password" { - type = string - default = "12345" -} - -variable "ssh_username" { - type = string - default = "gem5" -} - -source "qemu" "initialize" { - accelerator = "kvm" - boot_command = ["e", - "", - "", - "autoinstall ds=nocloud-net\\;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ ---", - "" - ] - cpus = "4" - disk_size = "5000" - format = "raw" - headless = "true" - http_directory = "http" - iso_checksum = "sha256:8762f7e74e4d64d72fceb5f70682e6b069932deedb4949c6975d0f0fe0a91be3" - iso_urls = ["https://releases.ubuntu.com/releases/noble/ubuntu-24.04-live-server-amd64.iso"] - memory = "8192" - output_directory = "disk-image-ubuntu-24-04" - qemu_binary = "/usr/bin/qemu-system-x86_64" - qemuargs = [["-cpu", "host"], ["-display", "none"]] - shutdown_command = "echo '${var.ssh_password}'|sudo -S shutdown -P now" - ssh_password = "${var.ssh_password}" - ssh_username = "${var.ssh_username}" - ssh_wait_timeout = "60m" - vm_name = "${var.image_name}" - ssh_handshake_attempts = "1000" -} - -build { - sources = ["source.qemu.initialize"] - - provisioner "file" { - destination = "/home/gem5/" - source = "files/exit.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/gem5_init.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/after_boot.sh" - } - - provisioner "file" { - destination = "/home/gem5/" - source = "files/serial-getty@.service" - } - - provisioner "shell" { - execute_command = "echo '${var.ssh_password}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'" - scripts = ["scripts/post-installation.sh"] - expect_disconnect = true - } - - provisioner "file" { - source = "/home/gem5/vmlinux-x86-ubuntu" - destination = "./disk-image-ubuntu-24-04/vmlinux-x86-ubuntu" - direction = "download" - } -}