mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
72 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ee80a2635 | |||
| 653105ffdf | |||
| a67fe47e39 | |||
| 103222eb4e | |||
| 0304bbd6b1 | |||
| 4ca1662790 | |||
| 94e2c39146 | |||
| d67be8a71b | |||
| 130f0f089e | |||
| a75e19a379 | |||
| d2e1c72c33 | |||
| b94a1c537f | |||
| 164dd8300e | |||
| 32141b9181 | |||
| bc66045b2d | |||
| 649a59bf12 | |||
| b1706fe2c4 | |||
| 6548a7a206 | |||
| a3fcd6a943 | |||
| 3c834e4761 | |||
| 77c334ec1a | |||
| 7c013dd5df | |||
| a499f61626 | |||
| 794174863b | |||
| dedad8c6c7 | |||
| 54737f7d97 | |||
| 56fdddbca3 | |||
| 58dff13c12 | |||
| 45a416f269 | |||
| b09ef7403e | |||
| 2059376f34 | |||
| 4501493d03 | |||
| df3579f538 | |||
| 3c01990ffc | |||
| 991e0baaaa | |||
| 434ab82632 | |||
| 0f814b2df9 | |||
| f2c3f4f95b | |||
| 590efe2b9c | |||
| 7919adae9f | |||
| 8ea05f2ae4 | |||
| 3560600fb6 | |||
| 0e54abbb3f | |||
| 3e7f5be6fc | |||
| 36d3edd56c | |||
| 9008cbccba | |||
| 04022fb765 | |||
| 424c34140e | |||
| f85cd42756 | |||
| e7afb1ae5e | |||
| 2c52a5ab39 | |||
| d84fec113e | |||
| f1b1424db4 | |||
| df8b789d60 | |||
| 78d7b4366b | |||
| 7be12344b6 | |||
| 04e58480cb | |||
| ebcc67f00b | |||
| f5b1aa8c87 | |||
| c61c91f9f2 | |||
| a57af837d8 | |||
| 03ba957d5f | |||
| d661496a4c | |||
| 4e1ce01d4e | |||
| dfeb8f9862 | |||
| 79c4befdea | |||
| c8c0c08100 | |||
| 877cd04101 | |||
| 7453e26bc7 | |||
| 11e0b5baee | |||
| 54c652944f | |||
| ef5179c975 |
@@ -15,6 +15,7 @@ SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || rpmspec -D '_vendor clr' --srpm -q --
|
||||
SRPMFILE = results/$(SRPMVERS).src.rpm
|
||||
|
||||
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||
DEBUGINFO_RPM = $(wildcard rpms/*-debuginfo-*.rpm)
|
||||
RPMS ?= $(LATEST_RPMS)
|
||||
|
||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||
@@ -408,6 +409,31 @@ install:
|
||||
done
|
||||
@$(MAKE) loop-down DEVICE=6
|
||||
|
||||
#help install-debuginfo-local: Install locally built debuginfo RPM to
|
||||
#help the automatic debuginfo cache location (/var/cache/debuginfo)
|
||||
install-debuginfo-local:
|
||||
tmpdir=$$(mktemp -d); \
|
||||
rpm2cpio ${DEBUGINFO_RPM} | ( cd $$tmpdir; cpio -i -d -u); \
|
||||
dest=/var/cache/debuginfo/lib; \
|
||||
find $$tmpdir/usr/lib/debug/ -mindepth 1 -maxdepth 1 | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
dest=/var/cache/debuginfo/src; \
|
||||
find $$tmpdir/usr/src/debug/ -mindepth 1 -maxdepth 1 | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
sudo rm -rf $$tmpdir
|
||||
|
||||
#help install-local: Install locally built RPMs to the root filesystem. Note that the
|
||||
#help debuginfo RPM installs to /var/cache/debuginfo
|
||||
install-local:
|
||||
for r in $(filter-out ${DEBUGINFO_RPM},${RPMS}); do \
|
||||
rpm2cpio $$r | (cd /; sudo cpio -i -d -u); \
|
||||
done
|
||||
$(MAKE) install-debuginfo-local
|
||||
|
||||
#help generateupstream: Run this rule to create or update the 'upstream' file
|
||||
#help by downloading the upstream source tarballs listed in the spec file and
|
||||
#help calculating their hashes. Autospec performs this step automatically, so
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,3 +1,4 @@
|
||||
AVB-AudioModules
|
||||
Babel
|
||||
Botan
|
||||
CUnit
|
||||
@@ -7,6 +8,8 @@ ConfigArgParse
|
||||
Counter
|
||||
Cython
|
||||
Django
|
||||
Edge-optimized-models
|
||||
F-Engrave
|
||||
Flask
|
||||
Flask-RESTful
|
||||
FlatBuffers
|
||||
@@ -24,6 +27,7 @@ LibRaw
|
||||
LibVNCServer
|
||||
Linux-PAM
|
||||
LuaJIT
|
||||
LyX
|
||||
M2Crypto
|
||||
Mako
|
||||
Markdown
|
||||
@@ -33,7 +37,10 @@ MonkeyType
|
||||
MySQL-python
|
||||
NetworkManager
|
||||
NetworkManager-openconnect
|
||||
OpenCASCADE
|
||||
OpenColorIO
|
||||
OpenSP
|
||||
PackageKit
|
||||
Paste
|
||||
PasteDeploy
|
||||
Pillow
|
||||
@@ -42,6 +49,8 @@ PyDispatcher
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyNaCl
|
||||
PyOpenGL
|
||||
PyQRCode
|
||||
PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
@@ -232,6 +241,7 @@ R-circlize
|
||||
R-classInt
|
||||
R-cli
|
||||
R-clipr
|
||||
R-clisymbols
|
||||
R-clue
|
||||
R-clustMixType
|
||||
R-clusterGeneration
|
||||
@@ -244,6 +254,7 @@ R-colourpicker
|
||||
R-combinat
|
||||
R-commonmark
|
||||
R-compositions
|
||||
R-config
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
@@ -252,6 +263,7 @@ R-cowplot
|
||||
R-crayon
|
||||
R-crosstalk
|
||||
R-crul
|
||||
R-csvy
|
||||
R-cubature
|
||||
R-curl
|
||||
R-cvTools
|
||||
@@ -333,6 +345,7 @@ R-fastcluster
|
||||
R-fastmatch
|
||||
R-fauxpas
|
||||
R-fda
|
||||
R-feather
|
||||
R-ff
|
||||
R-fields
|
||||
R-filehash
|
||||
@@ -350,6 +363,7 @@ R-formatR
|
||||
R-fossil
|
||||
R-fpc
|
||||
R-fracdiff
|
||||
R-fs
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
@@ -363,6 +377,7 @@ R-gclus
|
||||
R-gdata
|
||||
R-geepack
|
||||
R-geiger
|
||||
R-generics
|
||||
R-geometry
|
||||
R-getopt
|
||||
R-ggjoy
|
||||
@@ -370,6 +385,7 @@ R-ggplot2
|
||||
R-ggplot2movies
|
||||
R-ggridges
|
||||
R-ggvis
|
||||
R-gh
|
||||
R-git2r
|
||||
R-glmnet
|
||||
R-globals
|
||||
@@ -404,6 +420,7 @@ R-hypergeo
|
||||
R-ica
|
||||
R-igraph
|
||||
R-import
|
||||
R-ini
|
||||
R-inline
|
||||
R-inum
|
||||
R-ipred
|
||||
@@ -414,6 +431,7 @@ R-joineR
|
||||
R-joineRML
|
||||
R-jpeg
|
||||
R-jsonlite
|
||||
R-keras
|
||||
R-kernlab
|
||||
R-klaR
|
||||
R-kmi
|
||||
@@ -596,6 +614,7 @@ R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-rcmdcheck
|
||||
R-reactR
|
||||
R-readr
|
||||
R-readstata13
|
||||
@@ -605,6 +624,8 @@ R-registry
|
||||
R-relimp
|
||||
R-rematch
|
||||
R-rematch2
|
||||
R-remote
|
||||
R-remotes
|
||||
R-rentrez
|
||||
R-repr
|
||||
R-reprex
|
||||
@@ -656,6 +677,7 @@ R-sendmailR
|
||||
R-seqinr
|
||||
R-seriation
|
||||
R-seroincidence
|
||||
R-sessioninfo
|
||||
R-setRNG
|
||||
R-sfsmisc
|
||||
R-sgeostat
|
||||
@@ -707,8 +729,10 @@ R-taxize
|
||||
R-tclust
|
||||
R-tensor
|
||||
R-tensorA
|
||||
R-tensorflow
|
||||
R-testit
|
||||
R-testthat
|
||||
R-tfruns
|
||||
R-threejs
|
||||
R-tibble
|
||||
R-tidyr
|
||||
@@ -734,6 +758,7 @@ R-ucminf
|
||||
R-urca
|
||||
R-urltools
|
||||
R-uroot
|
||||
R-usethis
|
||||
R-utf8
|
||||
R-uuid
|
||||
R-varImp
|
||||
@@ -755,10 +780,12 @@ R-withr
|
||||
R-worrms
|
||||
R-xfun
|
||||
R-xml2
|
||||
R-xopen
|
||||
R-xtable
|
||||
R-xts
|
||||
R-yaml
|
||||
R-zCompositions
|
||||
R-zeallot
|
||||
R-zip
|
||||
R-zoo
|
||||
Remmina
|
||||
@@ -778,10 +805,12 @@ SDL_ttf
|
||||
SQLAlchemy
|
||||
SQLAlchemy-Utils
|
||||
Send2Trash
|
||||
SmartXbar
|
||||
SocksiPy-branch
|
||||
Sphinx
|
||||
SuiteSparse
|
||||
Tempita
|
||||
Texmaker
|
||||
Theano
|
||||
Thunar
|
||||
UkPostcodeParser
|
||||
@@ -834,6 +863,7 @@ acl
|
||||
acme
|
||||
acpica-unix2
|
||||
acrn-hypervisor
|
||||
adapt-parser
|
||||
adwaita-icon-theme
|
||||
aeon
|
||||
aioeventlet
|
||||
@@ -877,6 +907,7 @@ argparse
|
||||
ark
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
asio
|
||||
asn1crypto
|
||||
aspell
|
||||
@@ -894,6 +925,7 @@ at-spi2-atk
|
||||
at-spi2-core
|
||||
atk
|
||||
atkmm
|
||||
atom
|
||||
atomicwrites
|
||||
attica
|
||||
attr
|
||||
@@ -909,9 +941,11 @@ autofs
|
||||
autogen
|
||||
automake
|
||||
automaton
|
||||
awesome-wm
|
||||
awscli
|
||||
axel
|
||||
azure-configs
|
||||
azure-iot-sdk
|
||||
babeltrace
|
||||
babl
|
||||
backcall
|
||||
@@ -931,6 +965,7 @@ bashdb
|
||||
bats
|
||||
bazel
|
||||
bc
|
||||
bcc
|
||||
bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
@@ -950,6 +985,7 @@ bluez-qt
|
||||
bmap-tools
|
||||
bndl-lamp-basic
|
||||
bokeh
|
||||
bolt
|
||||
bomber
|
||||
boost
|
||||
borgbackup
|
||||
@@ -961,8 +997,10 @@ breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
bridge-utils
|
||||
bro
|
||||
brotli
|
||||
bsdiff
|
||||
bspwm
|
||||
btrfs-progs
|
||||
buildreq-R
|
||||
buildreq-cmake
|
||||
@@ -981,6 +1019,7 @@ buildreq-mvn
|
||||
buildreq-qmake
|
||||
buildreq-scons
|
||||
bundle-chroot-builder
|
||||
bwidget
|
||||
bz2file
|
||||
bzip2
|
||||
c-ares
|
||||
@@ -990,6 +1029,7 @@ ca-certs-static
|
||||
cabextract
|
||||
cached-property
|
||||
cachetools
|
||||
caffe
|
||||
cairo
|
||||
cairomm
|
||||
calendarsupport
|
||||
@@ -1046,6 +1086,7 @@ clr-find-bundle
|
||||
clr-fwupd-hooks
|
||||
clr-hardware-files
|
||||
clr-init
|
||||
clr-installer
|
||||
clr-man-pages
|
||||
clr-power-tweaks
|
||||
clr-python-timestamp
|
||||
@@ -1102,10 +1143,12 @@ compat-fuse-soname2
|
||||
compat-gegl
|
||||
compat-gegl-0.3
|
||||
compat-glew-soname1
|
||||
compat-gmime-26
|
||||
compat-gtksourceview-soname3
|
||||
compat-guile-soname20
|
||||
compat-hdf5-soname10
|
||||
compat-hyperscan-soname4
|
||||
compat-icu4c-soname61
|
||||
compat-ipset-soname10
|
||||
compat-libical-soname2
|
||||
compat-libidn-soname11
|
||||
@@ -1117,9 +1160,13 @@ compat-llvm-soname6
|
||||
compat-mpfr-soname4
|
||||
compat-opencv-soname32
|
||||
compat-opencv-soname33
|
||||
compat-opencv-soname34
|
||||
compat-openssl-soname-10
|
||||
compat-poppler-soname78
|
||||
compat-protobuf-soname14
|
||||
compat-protobuf-soname15
|
||||
compat-readline
|
||||
compat-readline-soname5
|
||||
component
|
||||
compute-image-packages
|
||||
configobj
|
||||
@@ -1181,6 +1228,7 @@ defusedxml
|
||||
dejagnu
|
||||
deprecation
|
||||
desktop-file-utils
|
||||
desktop-icons
|
||||
devhelp
|
||||
dfc
|
||||
dfu-util
|
||||
@@ -1201,9 +1249,13 @@ django-discover-runner
|
||||
django-nose
|
||||
django-pyscss
|
||||
django_compressor
|
||||
dldt
|
||||
dldt-model-optimizer
|
||||
dlt-daemon
|
||||
dmap2gcode
|
||||
dmenu
|
||||
dmidecode
|
||||
dmlc-core
|
||||
dnf
|
||||
dnf-plugins-core
|
||||
dnsmasq
|
||||
@@ -1234,10 +1286,12 @@ dstat
|
||||
dtc
|
||||
dtopt
|
||||
dulwich
|
||||
dunst
|
||||
duperemove
|
||||
dwarves
|
||||
dyskctl
|
||||
e2fsprogs
|
||||
earlyapp
|
||||
ebtables
|
||||
ecdsa
|
||||
ed
|
||||
@@ -1248,9 +1302,11 @@ efivar
|
||||
eigen
|
||||
elasticsearch
|
||||
elasticsearch-dep
|
||||
electric-fence
|
||||
elementary-xfce
|
||||
elfutils
|
||||
elixir
|
||||
ell
|
||||
emacs
|
||||
empy
|
||||
enchant
|
||||
@@ -1260,6 +1316,7 @@ envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
eternalegypt
|
||||
ethtool
|
||||
eventlet
|
||||
eventviews
|
||||
@@ -1279,14 +1336,17 @@ f2fs-tools
|
||||
faba-icon-theme
|
||||
fakeroot
|
||||
fann
|
||||
fann2
|
||||
farstream
|
||||
fasteners
|
||||
fastimport
|
||||
fcgi
|
||||
feh
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
filelight
|
||||
filelock
|
||||
filesystem
|
||||
findutils
|
||||
fio
|
||||
@@ -1304,6 +1364,7 @@ flake8-docstrings
|
||||
flake8-import-order
|
||||
flake8-polyfill
|
||||
flatpak
|
||||
flatpak-builder
|
||||
fldigi
|
||||
flex
|
||||
flmsg
|
||||
@@ -1315,6 +1376,8 @@ font-adobe-75dpi
|
||||
font-bitstream-type1
|
||||
font-util
|
||||
fontconfig
|
||||
fontforge
|
||||
fonttools
|
||||
frameworkintegration
|
||||
freeglut
|
||||
freeipmi
|
||||
@@ -1346,6 +1409,7 @@ gdal
|
||||
gdb
|
||||
gdbm
|
||||
gdk-pixbuf
|
||||
gdl
|
||||
gdm
|
||||
geany
|
||||
geany-plugins
|
||||
@@ -1397,6 +1461,7 @@ gnome-common
|
||||
gnome-control-center
|
||||
gnome-desktop
|
||||
gnome-disk-utility
|
||||
gnome-doc-utils
|
||||
gnome-flashback
|
||||
gnome-font-viewer
|
||||
gnome-icon-theme
|
||||
@@ -1435,6 +1500,8 @@ gom
|
||||
goocanvas
|
||||
google-api-python-client
|
||||
google-apitools
|
||||
google-auth
|
||||
google-auth-httplib2
|
||||
google-reauth
|
||||
googletest
|
||||
gperf
|
||||
@@ -1475,6 +1542,7 @@ gtk-doc
|
||||
gtk-vnc
|
||||
gtk-xfce-engine
|
||||
gtk3
|
||||
gtkglext
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
gtkspell3
|
||||
@@ -1483,6 +1551,7 @@ gupnp-av
|
||||
gutenprint
|
||||
gvfs
|
||||
gvim
|
||||
gwenview
|
||||
gzip
|
||||
h5py
|
||||
hacking
|
||||
@@ -1502,6 +1571,7 @@ hicolor-icon-theme
|
||||
hold
|
||||
home-assistant
|
||||
horizon
|
||||
horovod
|
||||
hostname
|
||||
html5lib
|
||||
htop
|
||||
@@ -1528,6 +1598,7 @@ ibus-table
|
||||
icalendar
|
||||
icdiff
|
||||
iceauth
|
||||
icecream
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
@@ -1535,17 +1606,22 @@ idna-ssl
|
||||
ifaddr
|
||||
iftop
|
||||
ilmbase
|
||||
image
|
||||
imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
indent
|
||||
infiniband-diags
|
||||
inflection
|
||||
influxdb
|
||||
iniparse
|
||||
init-rdahead
|
||||
inotify-tools
|
||||
intel-gmmlib
|
||||
intel-gpu-tools
|
||||
intel-hybrid-driver
|
||||
intel-media-driver
|
||||
intelhex
|
||||
intltool
|
||||
ioc-cbc-tools
|
||||
ioping
|
||||
@@ -1584,8 +1660,10 @@ itsdangerous
|
||||
itstool
|
||||
iw
|
||||
ixion
|
||||
jack-audio-connection-kit
|
||||
jansson
|
||||
jaraco.functools
|
||||
jdcal
|
||||
jedi
|
||||
jedi-vim
|
||||
jeepney
|
||||
@@ -1723,6 +1801,7 @@ killbots
|
||||
kimageformats
|
||||
kimagemapeditor
|
||||
kimap
|
||||
kimchi
|
||||
kinfocenter
|
||||
kinit
|
||||
kio
|
||||
@@ -1772,6 +1851,7 @@ konqueror
|
||||
konquest
|
||||
konsole
|
||||
kontactinterface
|
||||
konversation
|
||||
kpackage
|
||||
kparts
|
||||
kpeople
|
||||
@@ -1833,6 +1913,7 @@ ldb
|
||||
lensfun
|
||||
less
|
||||
leveldb
|
||||
lftp
|
||||
libICE
|
||||
libSM
|
||||
libX11
|
||||
@@ -1873,6 +1954,7 @@ libassuan
|
||||
libasyncns
|
||||
libatasmart
|
||||
libatomic_ops
|
||||
libavtp
|
||||
libb64
|
||||
libblockdev
|
||||
libburn
|
||||
@@ -1900,6 +1982,7 @@ libe-book
|
||||
libepoxy
|
||||
libepubgen
|
||||
liberasurecode
|
||||
liberation-fonts
|
||||
libetonyek
|
||||
libev
|
||||
libevdev
|
||||
@@ -1907,6 +1990,7 @@ libevent
|
||||
libexif
|
||||
libexttextcat
|
||||
libffi
|
||||
libffmpeg-stub
|
||||
libfontenc
|
||||
libfprint
|
||||
libfreehand
|
||||
@@ -1960,6 +2044,7 @@ libmbim
|
||||
libmediaart
|
||||
libmicrohttpd
|
||||
libmnl
|
||||
libmodbus
|
||||
libmodulemd
|
||||
libmspack
|
||||
libmspub
|
||||
@@ -2017,6 +2102,7 @@ libsodium
|
||||
libsolv
|
||||
libsoup
|
||||
libspectre
|
||||
libspiro
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
@@ -2026,9 +2112,11 @@ libtasn1
|
||||
libthai
|
||||
libtheora
|
||||
libtirpc
|
||||
libtk-img
|
||||
libtool
|
||||
libudev0-shim
|
||||
libuev
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
libusb
|
||||
@@ -2052,6 +2140,7 @@ libwpd
|
||||
libwpg
|
||||
libwps
|
||||
libxcb
|
||||
libxdg-basedir
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
libxkbcommon
|
||||
@@ -2066,6 +2155,8 @@ libyami-utils
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
lightdm
|
||||
lightdm-gtk-greeter
|
||||
linecache2
|
||||
links
|
||||
linux
|
||||
@@ -2076,6 +2167,8 @@ linux-gce
|
||||
linux-hyperv
|
||||
linux-hyperv-lts
|
||||
linux-hyperv-mini
|
||||
linux-iot-lts2017-preempt-rt
|
||||
linux-iot-lts2018
|
||||
linux-kata
|
||||
linux-kvm
|
||||
linux-libc-headers
|
||||
@@ -2088,6 +2181,7 @@ linux-steam-integration
|
||||
linux-tools
|
||||
linuxptp
|
||||
lksctp-tools
|
||||
llfuse
|
||||
llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
@@ -2100,9 +2194,12 @@ lsacpi
|
||||
lshw
|
||||
lskat
|
||||
lsof
|
||||
lsscsi
|
||||
ltp
|
||||
ltrace
|
||||
lua
|
||||
lualgi
|
||||
luarocks
|
||||
lxml
|
||||
lz4
|
||||
lzip
|
||||
@@ -2125,10 +2222,12 @@ mcelog
|
||||
mdadm
|
||||
mdds
|
||||
media-player-info
|
||||
mediasdk
|
||||
meld
|
||||
memcached
|
||||
memkind
|
||||
memshrinker
|
||||
mercurial
|
||||
mesa
|
||||
mesa-demos
|
||||
meson
|
||||
@@ -2176,10 +2275,14 @@ mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpmath
|
||||
mraa
|
||||
msgpack
|
||||
msm
|
||||
msmtp
|
||||
msr-tools
|
||||
msrest
|
||||
mstflint
|
||||
mtd-utils
|
||||
mtdev
|
||||
mtr
|
||||
multidict
|
||||
@@ -2191,6 +2294,8 @@ musl
|
||||
mutagen
|
||||
mutt
|
||||
mutter
|
||||
mxnet
|
||||
mycroft-core
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mypy_extensions
|
||||
@@ -2212,6 +2317,7 @@ net-snmp
|
||||
net-tools
|
||||
netaddr
|
||||
netbase
|
||||
netcdf
|
||||
netdisco
|
||||
netifaces
|
||||
nettle
|
||||
@@ -2343,6 +2449,8 @@ p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacrunner
|
||||
padaos
|
||||
padatious
|
||||
paho-mqtt
|
||||
paho.mqtt.c
|
||||
paho.mqtt.cpp
|
||||
@@ -2352,6 +2460,8 @@ pandoc
|
||||
pandocfilters
|
||||
pango
|
||||
pangomm
|
||||
pangox-compat
|
||||
paper-icon-theme
|
||||
parallel
|
||||
parameter-framework
|
||||
paramiko
|
||||
@@ -2364,6 +2474,7 @@ passlib
|
||||
patch
|
||||
patchutils
|
||||
pathlib
|
||||
pathlib2
|
||||
patsy
|
||||
pavucontrol
|
||||
pbr
|
||||
@@ -2676,6 +2787,7 @@ perl-Image-Size
|
||||
perl-Import-Into
|
||||
perl-Importer
|
||||
perl-Inline
|
||||
perl-Inline-C
|
||||
perl-JSON
|
||||
perl-JSON-MaybeXS
|
||||
perl-JSON-RPC
|
||||
@@ -2829,8 +2941,6 @@ perl-Pod-Plainer
|
||||
perl-Pod-Spell
|
||||
perl-Pod-Strip
|
||||
perl-PostScript-File
|
||||
perl-Proc-Daemon
|
||||
perl-Proc-ProcessTable
|
||||
perl-Proc-Wait3
|
||||
perl-Protocol-OSC
|
||||
perl-Quota
|
||||
@@ -2899,7 +3009,7 @@ perl-Term-Table
|
||||
perl-Term-UI
|
||||
perl-Test-Assertions
|
||||
perl-Test-Base
|
||||
perl-Test-CleanNameSpaces
|
||||
perl-Test-CleanNamespaces
|
||||
perl-Test-Compile
|
||||
perl-Test-Deep
|
||||
perl-Test-Differences
|
||||
@@ -2916,6 +3026,7 @@ perl-Test-Manifest
|
||||
perl-Test-MockModule
|
||||
perl-Test-MockTime
|
||||
perl-Test-More-UTF8
|
||||
perl-Test-Most
|
||||
perl-Test-Needs
|
||||
perl-Test-NoWarnings
|
||||
perl-Test-Number-Delta
|
||||
@@ -2932,6 +3043,7 @@ perl-Test-Strict
|
||||
perl-Test-Synopsis
|
||||
perl-Test-TCP
|
||||
perl-Test-Taint
|
||||
perl-Test-Trap
|
||||
perl-Test-UseAllModules
|
||||
perl-Test-Warn
|
||||
perl-Test-Warnings
|
||||
@@ -3075,6 +3187,9 @@ portend
|
||||
positional
|
||||
posix_ipc
|
||||
postgresql
|
||||
potrace
|
||||
povray
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
powertop
|
||||
poxml
|
||||
@@ -3096,6 +3211,7 @@ pth
|
||||
ptyprocess
|
||||
pugixml
|
||||
pulseaudio
|
||||
pulsectl
|
||||
purpose
|
||||
pv
|
||||
pwgen
|
||||
@@ -3103,12 +3219,15 @@ py
|
||||
pyOpenSSL
|
||||
pyScss
|
||||
pyaes
|
||||
pyalsaaudio
|
||||
pyaml
|
||||
pyasn1
|
||||
pyasn1-modules
|
||||
pyatspi
|
||||
pybind11
|
||||
pycadf
|
||||
pycairo
|
||||
pycam
|
||||
pycodestyle
|
||||
pycparser
|
||||
pycrypto
|
||||
@@ -3118,9 +3237,13 @@ pydot
|
||||
pydot_ng
|
||||
pydotplus
|
||||
pyeclib
|
||||
pyee
|
||||
pyemd
|
||||
pyflakes
|
||||
pygobject
|
||||
pygobject-legacy
|
||||
pygtk
|
||||
pygtkglext
|
||||
pyinotify
|
||||
pykerberos
|
||||
pylama
|
||||
@@ -3128,6 +3251,7 @@ pyliblzma
|
||||
pylint
|
||||
pymemcache
|
||||
pymongo
|
||||
pyotp
|
||||
pypandoc
|
||||
pyparsing
|
||||
pyperclip
|
||||
@@ -3143,6 +3267,7 @@ pysendfile
|
||||
pyserial
|
||||
pysnmp
|
||||
pytest
|
||||
pytest-asyncio
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-randomly
|
||||
@@ -3158,13 +3283,17 @@ python-augeas
|
||||
python-barbicanclient
|
||||
python-ceilometerclient
|
||||
python-cinderclient
|
||||
python-coveralls
|
||||
python-crfsuite
|
||||
python-dateutil
|
||||
python-dateutil-legacypython
|
||||
python-designateclient
|
||||
python-dldt
|
||||
python-editor
|
||||
python-future
|
||||
python-gflags
|
||||
python-glanceclient
|
||||
python-graphviz
|
||||
python-heatclient
|
||||
python-hwinfo
|
||||
python-kconfiglib
|
||||
@@ -3180,6 +3309,7 @@ python-mock
|
||||
python-multilib
|
||||
python-neutronclient
|
||||
python-novaclient
|
||||
python-openid
|
||||
python-openstackclient
|
||||
python-openzwave
|
||||
python-perf
|
||||
@@ -3192,12 +3322,16 @@ python-senlinclient
|
||||
python-subunit
|
||||
python-swiftclient
|
||||
python-systemd
|
||||
python-tabulate
|
||||
python-tappy
|
||||
python-toml
|
||||
python-troveclient
|
||||
python-urwid
|
||||
python-vlc
|
||||
python-zaqarclient
|
||||
python-zeep
|
||||
python-zstandard
|
||||
python2-mod_wsgi
|
||||
python3
|
||||
pytools
|
||||
pytz
|
||||
@@ -3214,6 +3348,7 @@ qpdf
|
||||
qpid-python
|
||||
qqc2-desktop-style
|
||||
qrencode
|
||||
qscintilla
|
||||
qt-creator
|
||||
qt3d
|
||||
qtbase
|
||||
@@ -3270,11 +3405,13 @@ redsocks
|
||||
reno
|
||||
reportlab
|
||||
repoze.lru
|
||||
repoze.sphinx.autointerface
|
||||
repoze.who
|
||||
requests
|
||||
requests-kerberos
|
||||
requests-mock
|
||||
requests-ntlm
|
||||
requests-oauthlib
|
||||
requests-toolbelt
|
||||
requestsexceptions
|
||||
rest
|
||||
@@ -3295,6 +3432,7 @@ rsa
|
||||
rsync
|
||||
rt-tests
|
||||
rtslib-fb
|
||||
ruamel-yaml
|
||||
ruby
|
||||
runc
|
||||
rust-std32
|
||||
@@ -3340,12 +3478,14 @@ sg3_utils
|
||||
shadow
|
||||
shared-mime-info
|
||||
sharutils
|
||||
shell
|
||||
shim
|
||||
siege
|
||||
simg-tools
|
||||
simple-scan
|
||||
simplegeneric
|
||||
simplejson
|
||||
singledispatch
|
||||
sip
|
||||
six
|
||||
slang
|
||||
@@ -3368,6 +3508,7 @@ source-highlight
|
||||
sox
|
||||
spandsp
|
||||
spark-dep
|
||||
spectacle
|
||||
speex
|
||||
speexdsp
|
||||
sphinx-feature-classification
|
||||
@@ -3376,6 +3517,7 @@ sphinxcontrib-apidoc
|
||||
sphinxcontrib-blockdiag
|
||||
sphinxcontrib-httpdomain
|
||||
sphinxcontrib-newsfeed
|
||||
sphinxcontrib-programoutput
|
||||
sphinxcontrib-websupport
|
||||
spi-tools
|
||||
spice
|
||||
@@ -3406,6 +3548,7 @@ suds-jurko
|
||||
sundials
|
||||
sure
|
||||
suricata
|
||||
svg.path
|
||||
svgpart
|
||||
sweeper
|
||||
swift
|
||||
@@ -3413,7 +3556,7 @@ swig
|
||||
swupd-client
|
||||
swupd-overdue
|
||||
swupd-probe
|
||||
swupd-server
|
||||
sxhkd
|
||||
sympy
|
||||
syndication
|
||||
synergy
|
||||
@@ -3434,6 +3577,7 @@ taskflow
|
||||
taskwarrior
|
||||
tbb
|
||||
tcl
|
||||
tclx
|
||||
tcpdump
|
||||
tdb
|
||||
telemetrics-client
|
||||
@@ -3460,6 +3604,7 @@ text-unidecode
|
||||
tflearn
|
||||
tgt
|
||||
thermal_daemon
|
||||
thermal_monitor
|
||||
thin-provisioning-tools
|
||||
threadweaver
|
||||
thrift
|
||||
@@ -3470,6 +3615,7 @@ tiff
|
||||
tig
|
||||
tigervnc
|
||||
time
|
||||
tini
|
||||
tinyrpc
|
||||
tinyxml2
|
||||
tiptop
|
||||
@@ -3482,6 +3628,10 @@ tornado
|
||||
totem
|
||||
totem-pl-parser
|
||||
tox
|
||||
tpm2-abrmd
|
||||
tpm2-simulator
|
||||
tpm2-tools
|
||||
tpm2-tss
|
||||
tqdm
|
||||
traceback2
|
||||
traceroute
|
||||
@@ -3492,6 +3642,7 @@ tree
|
||||
trollius
|
||||
typed-ast
|
||||
typing
|
||||
typing_extensions
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
@@ -3506,6 +3657,7 @@ unison
|
||||
unittest2
|
||||
unixODBC
|
||||
unzip
|
||||
upm
|
||||
upower
|
||||
uritemplate
|
||||
urlgrabber
|
||||
@@ -3558,11 +3710,13 @@ weston
|
||||
wget
|
||||
wheel
|
||||
which
|
||||
whois
|
||||
widgetsnbextension
|
||||
winpdb
|
||||
wireless-regdb-master
|
||||
wireshark
|
||||
woff2
|
||||
wok
|
||||
wol
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
@@ -3594,6 +3748,7 @@ xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
xdpyinfo
|
||||
xemacs
|
||||
xerces-c
|
||||
xf86-input-evdev
|
||||
xf86-input-libinput
|
||||
xf86-input-mouse
|
||||
@@ -3648,7 +3803,9 @@ xwd
|
||||
xwininfo
|
||||
xz
|
||||
yajl
|
||||
yakuake
|
||||
yaml
|
||||
yaml-cpp
|
||||
yarl
|
||||
yarn
|
||||
yasm
|
||||
@@ -3657,7 +3814,6 @@ yelp-tools
|
||||
yelp-xsl
|
||||
yum
|
||||
yum-metadata-parser
|
||||
yum-utils
|
||||
zVMCloudConnector
|
||||
zake
|
||||
zc.lockfile
|
||||
|
||||
+9
-1
@@ -43,11 +43,19 @@ if [ ! -f "$IMAGE" ]; then
|
||||
fi
|
||||
rm -f debug.log
|
||||
|
||||
# 10/25/2018: keep back compatibility for a while
|
||||
UEFI_BIOS="-bios OVMF.fd"
|
||||
|
||||
if [ -f OVMF_VARS.fd -a -f OVMF_CODE.fd ]; then
|
||||
UEFI_BIOS=" -drive file=OVMF_CODE.fd,if=pflash,format=raw,unit=0,readonly=on "
|
||||
UEFI_BIOS+=" -drive file=OVMF_VARS.fd,if=pflash,format=raw,unit=1 "
|
||||
fi
|
||||
|
||||
VMN=${VMN:=1}
|
||||
|
||||
qemu-system-x86_64 \
|
||||
-enable-kvm \
|
||||
-bios OVMF.fd \
|
||||
${UEFI_BIOS} \
|
||||
-smp sockets=1,cpus=4,cores=2 -cpu host \
|
||||
-m 1024 \
|
||||
-vga none -nographic \
|
||||
|
||||
Reference in New Issue
Block a user