Skip to content
Snippets Groups Projects
Commit 1c5df3ee authored by Simon McVittie's avatar Simon McVittie
Browse files

runtime: Remove spy


This was a prototype runtime based on Ubuntu 18.04 'bionic'. It was
replaced with 'soldier', based on Debian 10 'buster', because Debian
allows redistribution of unmodified binary packages. (A side benefit
is that Debian 10 is about a year newer than Ubuntu 18.04.)

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 9347b9ef
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ Depending on the current state of the Steam Runtime development cycle,
the `scout` runtime as configured here might require unreleased packages;
roll back recent commits if necessary.
The `heavy` and `spy` alternative runtimes are under development and the
The `heavy` and `soldier` alternative runtimes are under development and the
apt sources necessary to build them are not currently public.
The "app" stage (which builds Flatpak apps) is not regularly tested but
......
---
# Copyright © 2013-2016 Valve Corporation
# Copyright © 2017-2019 Collabora Ltd.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of these scripts and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
id_prefix: com.valvesoftware.SteamRuntime
add_packages_multiarch:
- steamrt-libs
add_packages:
- steamrt-container
post_script: |
set -eux
ln -s /usr/libexec/flatpak-xdg-utils/xdg-email /usr/bin/
ln -s /usr/libexec/flatpak-xdg-utils/xdg-open /usr/bin/
install -d -m755 /usr/lib/locale
install -d -m755 /usr/share/i18n
if [ -e /usr/share/i18n/locales/en_US ]; then
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
localedef -v -i en_US -c -f UTF-8 en_US.UTF-8 || :
test -e /usr/lib/locale/locale-archive
fi
# Arch Linux 32-bit biarch glibc looks for locales here. We might
# need to use the host system glibc when pressure-vessel brings in the
# host graphics drivers.
install -d -m755 /usr/lib32
ln -s ../lib/locale /usr/lib32/locale
# Biarch OSs that are the other way round might conceivably look here
if [ -d /lib64 ]; then
install -d -m755 /usr/lib64
ln -s ../lib/locale /usr/lib64/locale
fi
platform:
post_script: |
set -eux
find /usr -type d -empty -print0 | xargs -0 -t -I '{}' -- touch '{}/.exists'
sdk:
add_packages_multiarch:
- steamrt-libdebug:
debug_symbols: true
- steamrt-libdevel
add_packages:
- steamrt-dev
- steamrt-libdebug-non-multiarch:
debug_symbols: true
post_script: |
set -eux
ln -sv busybox /bin/dos2unix
ln -sv busybox /bin/ifconfig
ln -sv busybox /bin/ip
ln -sv busybox /bin/nc
ln -sv busybox /bin/ping
ln -sv busybox /bin/ping6
ln -sv busybox /bin/route
ln -sv busybox /bin/telnet
ln -sv busybox /bin/traceroute
ln -sv busybox /bin/traceroute6
ln -sv busybox /bin/unix2dos
ln -sv busybox /bin/vi
ln -sv busybox /bin/xxd
...
---
apt_components:
- main
- non-free
can_merge_usr: after_sysroot
has_automatic_dbgsym: true
strip_source_version_suffix: '\+srtv2.*'
sources:
# Not available to the public yet, so this URL is just a guess.
- label: steamrt
apt_uri: 'http://repo.steampowered.com/steamrt-spy'
keyring: 'valve-archive-keyring.gpg'
- label: ubuntu
for_build: false
for_final: true
apt_uri: 'http://archive.ubuntu.com/ubuntu'
apt_suite: 'bionic'
keyring: 'ubuntu-archive-keyring.gpg'
apt_components:
- main
- restricted
- universe
- multiverse
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment