You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
351 B
19 lines
351 B
#!/bin/sh
|
|
set -e
|
|
|
|
# Run this script against the copy of the gentoo tree that's going to be used
|
|
|
|
export PORTDIR="${1:-/}"
|
|
export ACCEPT_KEYWORDS="-* amd64"
|
|
|
|
pkgs="
|
|
app-misc/ca-certificates
|
|
net-misc/wget
|
|
sys-apps/portage
|
|
"
|
|
|
|
for x in $pkgs; do
|
|
ver="$(portageq best_visible / ebuild "$x")"
|
|
portageq metadata / ebuild "$ver" SRC_URI
|
|
echo
|
|
done
|
|
|