mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
81 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| fc9793ff4e | |||
| 1508582709 | |||
| fca82072fa | |||
| 7fb07fdb29 | |||
| 387cb23c79 | |||
| c63ed02014 | |||
| d0773602f5 | |||
| 7b2b947843 | |||
| e619aeeab5 | |||
| f041821042 | |||
| 04e79ac6f7 | |||
| 942c21283f | |||
| 0803beead9 | |||
| 8bf3888935 | |||
| 3f2c7de583 | |||
| 514048840f | |||
| 012a1a3767 | |||
| 0168eb6258 |
+29
-1
@@ -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 )
|
||||
@@ -154,13 +155,15 @@ pullrebase:
|
||||
fi \
|
||||
fi
|
||||
|
||||
preautospec-checks:
|
||||
|
||||
#help autospec: automatically generates a specfile. If there is
|
||||
#help already a specfile, it will be overwritten. Several files used by
|
||||
#help autospec will be created in the process.
|
||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
||||
#help to autospec.
|
||||
#help For more information, see the project at https://github.com/clearlinux/autospec
|
||||
autospec: pullrebase localreponotice clean-old-content
|
||||
autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
@if [ -e $(SPECFILE) ] && ! grep -q "# Generated by: autospec.py" $(SPECFILE) ; then \
|
||||
echo "Specfile already exists and was not created by autospec.py! Aborting."; \
|
||||
exit 1; \
|
||||
@@ -406,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
|
||||
|
||||
+3
-1
@@ -190,13 +190,15 @@ releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
provides:
|
||||
@$(TOPLVL)/projects/common/provides.sh -f $(FP) -r $(RN)
|
||||
|
||||
preautospecnew-checks:
|
||||
|
||||
#help autospecnew: Creates a new autospec package with for a given URL=$(URL)
|
||||
#help with NAME=$(NAME). Several files used by autospec will be created in the
|
||||
#help process.
|
||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
||||
#help to autospec.
|
||||
#help For more information about autospec, see the project page on Github https://github.com/clearlinux/autospec
|
||||
autospecnew: localreponotice
|
||||
autospecnew: preautospecnew-checks localreponotice
|
||||
@if [ -z $(NAME) ] || [ -z $(URL) ]; then \
|
||||
echo "Please specify NAME and URL. The ARCHIVES variable is optional."; \
|
||||
exit 1; \
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,3 +1,4 @@
|
||||
AVB-AudioModules
|
||||
Babel
|
||||
Botan
|
||||
CUnit
|
||||
@@ -7,6 +8,7 @@ ConfigArgParse
|
||||
Counter
|
||||
Cython
|
||||
Django
|
||||
Edge-optimized-models
|
||||
Flask
|
||||
Flask-RESTful
|
||||
FlatBuffers
|
||||
@@ -24,6 +26,7 @@ LibRaw
|
||||
LibVNCServer
|
||||
Linux-PAM
|
||||
LuaJIT
|
||||
LyX
|
||||
M2Crypto
|
||||
Mako
|
||||
Markdown
|
||||
@@ -33,7 +36,9 @@ MonkeyType
|
||||
MySQL-python
|
||||
NetworkManager
|
||||
NetworkManager-openconnect
|
||||
OpenColorIO
|
||||
OpenSP
|
||||
PackageKit
|
||||
Paste
|
||||
PasteDeploy
|
||||
Pillow
|
||||
@@ -41,6 +46,8 @@ Pint
|
||||
PyDispatcher
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyNaCl
|
||||
PyQRCode
|
||||
PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
@@ -231,6 +238,7 @@ R-circlize
|
||||
R-classInt
|
||||
R-cli
|
||||
R-clipr
|
||||
R-clisymbols
|
||||
R-clue
|
||||
R-clustMixType
|
||||
R-clusterGeneration
|
||||
@@ -243,6 +251,7 @@ R-colourpicker
|
||||
R-combinat
|
||||
R-commonmark
|
||||
R-compositions
|
||||
R-config
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
@@ -349,6 +358,7 @@ R-formatR
|
||||
R-fossil
|
||||
R-fpc
|
||||
R-fracdiff
|
||||
R-fs
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
@@ -362,6 +372,7 @@ R-gclus
|
||||
R-gdata
|
||||
R-geepack
|
||||
R-geiger
|
||||
R-generics
|
||||
R-geometry
|
||||
R-getopt
|
||||
R-ggjoy
|
||||
@@ -369,6 +380,7 @@ R-ggplot2
|
||||
R-ggplot2movies
|
||||
R-ggridges
|
||||
R-ggvis
|
||||
R-gh
|
||||
R-git2r
|
||||
R-glmnet
|
||||
R-globals
|
||||
@@ -403,6 +415,7 @@ R-hypergeo
|
||||
R-ica
|
||||
R-igraph
|
||||
R-import
|
||||
R-ini
|
||||
R-inline
|
||||
R-inum
|
||||
R-ipred
|
||||
@@ -413,6 +426,7 @@ R-joineR
|
||||
R-joineRML
|
||||
R-jpeg
|
||||
R-jsonlite
|
||||
R-keras
|
||||
R-kernlab
|
||||
R-klaR
|
||||
R-kmi
|
||||
@@ -595,6 +609,7 @@ R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-rcmdcheck
|
||||
R-reactR
|
||||
R-readr
|
||||
R-readstata13
|
||||
@@ -604,6 +619,8 @@ R-registry
|
||||
R-relimp
|
||||
R-rematch
|
||||
R-rematch2
|
||||
R-remote
|
||||
R-remotes
|
||||
R-rentrez
|
||||
R-repr
|
||||
R-reprex
|
||||
@@ -655,6 +672,7 @@ R-sendmailR
|
||||
R-seqinr
|
||||
R-seriation
|
||||
R-seroincidence
|
||||
R-sessioninfo
|
||||
R-setRNG
|
||||
R-sfsmisc
|
||||
R-sgeostat
|
||||
@@ -706,8 +724,10 @@ R-taxize
|
||||
R-tclust
|
||||
R-tensor
|
||||
R-tensorA
|
||||
R-tensorflow
|
||||
R-testit
|
||||
R-testthat
|
||||
R-tfruns
|
||||
R-threejs
|
||||
R-tibble
|
||||
R-tidyr
|
||||
@@ -733,6 +753,7 @@ R-ucminf
|
||||
R-urca
|
||||
R-urltools
|
||||
R-uroot
|
||||
R-usethis
|
||||
R-utf8
|
||||
R-uuid
|
||||
R-varImp
|
||||
@@ -754,10 +775,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
|
||||
@@ -777,14 +800,19 @@ SDL_ttf
|
||||
SQLAlchemy
|
||||
SQLAlchemy-Utils
|
||||
Send2Trash
|
||||
SmartXbar
|
||||
SocksiPy-branch
|
||||
Sphinx
|
||||
SuiteSparse
|
||||
Tempita
|
||||
Texmaker
|
||||
Theano
|
||||
Thunar
|
||||
UkPostcodeParser
|
||||
Vertex-theme
|
||||
Vulkan-Headers
|
||||
Vulkan-Loader
|
||||
Vulkan-Tools
|
||||
WALinuxAgent
|
||||
WSGIProxy2
|
||||
WSME
|
||||
@@ -830,6 +858,7 @@ acl
|
||||
acme
|
||||
acpica-unix2
|
||||
acrn-hypervisor
|
||||
adapt-parser
|
||||
adwaita-icon-theme
|
||||
aeon
|
||||
aioeventlet
|
||||
@@ -873,6 +902,7 @@ argparse
|
||||
ark
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
asio
|
||||
asn1crypto
|
||||
aspell
|
||||
@@ -890,6 +920,7 @@ at-spi2-atk
|
||||
at-spi2-core
|
||||
atk
|
||||
atkmm
|
||||
atom
|
||||
atomicwrites
|
||||
attica
|
||||
attr
|
||||
@@ -905,9 +936,11 @@ autofs
|
||||
autogen
|
||||
automake
|
||||
automaton
|
||||
awesome-wm
|
||||
awscli
|
||||
axel
|
||||
azure-configs
|
||||
azure-iot-sdk
|
||||
babeltrace
|
||||
babl
|
||||
backcall
|
||||
@@ -927,6 +960,7 @@ bashdb
|
||||
bats
|
||||
bazel
|
||||
bc
|
||||
bcc
|
||||
bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
@@ -946,6 +980,7 @@ bluez-qt
|
||||
bmap-tools
|
||||
bndl-lamp-basic
|
||||
bokeh
|
||||
bolt
|
||||
bomber
|
||||
boost
|
||||
borgbackup
|
||||
@@ -957,8 +992,10 @@ breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
bridge-utils
|
||||
bro
|
||||
brotli
|
||||
bsdiff
|
||||
bspwm
|
||||
btrfs-progs
|
||||
buildreq-R
|
||||
buildreq-cmake
|
||||
@@ -977,6 +1014,7 @@ buildreq-mvn
|
||||
buildreq-qmake
|
||||
buildreq-scons
|
||||
bundle-chroot-builder
|
||||
bwidget
|
||||
bz2file
|
||||
bzip2
|
||||
c-ares
|
||||
@@ -1012,6 +1050,7 @@ cgdb
|
||||
cgit
|
||||
chardet
|
||||
check
|
||||
check-manifest
|
||||
cheese
|
||||
cheroot
|
||||
chrome-gnome-shell
|
||||
@@ -1041,6 +1080,7 @@ clr-find-bundle
|
||||
clr-fwupd-hooks
|
||||
clr-hardware-files
|
||||
clr-init
|
||||
clr-installer
|
||||
clr-man-pages
|
||||
clr-power-tweaks
|
||||
clr-python-timestamp
|
||||
@@ -1092,14 +1132,17 @@ commonmark
|
||||
compat-SDL2-soname1
|
||||
compat-cryptsetup-soname4
|
||||
compat-efivar-soname0
|
||||
compat-enchant-soname1
|
||||
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
|
||||
@@ -1107,12 +1150,17 @@ compat-libpng-soname12
|
||||
compat-libwebp-soname6
|
||||
compat-llvm-soname4
|
||||
compat-llvm-soname5
|
||||
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
|
||||
@@ -1130,8 +1178,10 @@ cov-core
|
||||
coverage
|
||||
cpio
|
||||
cppcheck
|
||||
cpprestsdk
|
||||
cppunit
|
||||
cpuid
|
||||
cpuloadgen
|
||||
cracklib
|
||||
crcmod
|
||||
createrepo_c
|
||||
@@ -1156,6 +1206,7 @@ cyrus-sasl
|
||||
dapl
|
||||
darktable
|
||||
dask
|
||||
datefudge
|
||||
db
|
||||
dbus
|
||||
dbus-broker
|
||||
@@ -1171,6 +1222,7 @@ defusedxml
|
||||
dejagnu
|
||||
deprecation
|
||||
desktop-file-utils
|
||||
desktop-icons
|
||||
devhelp
|
||||
dfc
|
||||
dfu-util
|
||||
@@ -1191,8 +1243,12 @@ django-discover-runner
|
||||
django-nose
|
||||
django-pyscss
|
||||
django_compressor
|
||||
dldt
|
||||
dldt-model-optimizer
|
||||
dlt-daemon
|
||||
dmenu
|
||||
dmidecode
|
||||
dmlc-core
|
||||
dnf
|
||||
dnf-plugins-core
|
||||
dnsmasq
|
||||
@@ -1214,6 +1270,7 @@ dosfstools
|
||||
double-conversion
|
||||
dovecot
|
||||
doxygen
|
||||
dpcontracts
|
||||
dpdk
|
||||
dracut
|
||||
dragon
|
||||
@@ -1222,10 +1279,12 @@ dstat
|
||||
dtc
|
||||
dtopt
|
||||
dulwich
|
||||
dunst
|
||||
duperemove
|
||||
dwarves
|
||||
dyskctl
|
||||
e2fsprogs
|
||||
earlyapp
|
||||
ebtables
|
||||
ecdsa
|
||||
ed
|
||||
@@ -1236,9 +1295,11 @@ efivar
|
||||
eigen
|
||||
elasticsearch
|
||||
elasticsearch-dep
|
||||
electric-fence
|
||||
elementary-xfce
|
||||
elfutils
|
||||
elixir
|
||||
ell
|
||||
emacs
|
||||
empy
|
||||
enchant
|
||||
@@ -1248,6 +1309,7 @@ envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
eternalegypt
|
||||
ethtool
|
||||
eventlet
|
||||
eventviews
|
||||
@@ -1267,14 +1329,17 @@ f2fs-tools
|
||||
faba-icon-theme
|
||||
fakeroot
|
||||
fann
|
||||
fann2
|
||||
farstream
|
||||
fasteners
|
||||
fastimport
|
||||
fcgi
|
||||
feh
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
filelight
|
||||
filelock
|
||||
filesystem
|
||||
findutils
|
||||
fio
|
||||
@@ -1292,6 +1357,7 @@ flake8-docstrings
|
||||
flake8-import-order
|
||||
flake8-polyfill
|
||||
flatpak
|
||||
flatpak-builder
|
||||
fldigi
|
||||
flex
|
||||
flmsg
|
||||
@@ -1303,6 +1369,8 @@ font-adobe-75dpi
|
||||
font-bitstream-type1
|
||||
font-util
|
||||
fontconfig
|
||||
fontforge
|
||||
fonttools
|
||||
frameworkintegration
|
||||
freeglut
|
||||
freeipmi
|
||||
@@ -1385,6 +1453,7 @@ gnome-common
|
||||
gnome-control-center
|
||||
gnome-desktop
|
||||
gnome-disk-utility
|
||||
gnome-doc-utils
|
||||
gnome-flashback
|
||||
gnome-font-viewer
|
||||
gnome-icon-theme
|
||||
@@ -1423,6 +1492,8 @@ gom
|
||||
goocanvas
|
||||
google-api-python-client
|
||||
google-apitools
|
||||
google-auth
|
||||
google-auth-httplib2
|
||||
google-reauth
|
||||
googletest
|
||||
gperf
|
||||
@@ -1516,6 +1587,7 @@ ibus-table
|
||||
icalendar
|
||||
icdiff
|
||||
iceauth
|
||||
icecream
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
@@ -1523,23 +1595,30 @@ 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
|
||||
iotop
|
||||
ipaddr
|
||||
ipaddress
|
||||
ipdb
|
||||
ipdbplugin
|
||||
iperf
|
||||
ipmctl
|
||||
ipmitool
|
||||
@@ -1570,8 +1649,10 @@ itsdangerous
|
||||
itstool
|
||||
iw
|
||||
ixion
|
||||
jack-audio-connection-kit
|
||||
jansson
|
||||
jaraco.functools
|
||||
jdcal
|
||||
jedi
|
||||
jedi-vim
|
||||
jeepney
|
||||
@@ -1596,6 +1677,7 @@ jupyter_console
|
||||
jupyter_core
|
||||
jupyterlab
|
||||
jupyterlab_launcher
|
||||
jupyterlab_server
|
||||
kactivities
|
||||
kactivities-stats
|
||||
kactivitymanagerd
|
||||
@@ -1708,6 +1790,7 @@ killbots
|
||||
kimageformats
|
||||
kimagemapeditor
|
||||
kimap
|
||||
kimchi
|
||||
kinfocenter
|
||||
kinit
|
||||
kio
|
||||
@@ -1757,6 +1840,7 @@ konqueror
|
||||
konquest
|
||||
konsole
|
||||
kontactinterface
|
||||
konversation
|
||||
kpackage
|
||||
kparts
|
||||
kpeople
|
||||
@@ -1768,6 +1852,7 @@ kqtquickcharts
|
||||
krb5
|
||||
krdc
|
||||
kreversi
|
||||
krita
|
||||
kross
|
||||
kruler
|
||||
krunner
|
||||
@@ -1817,6 +1902,7 @@ ldb
|
||||
lensfun
|
||||
less
|
||||
leveldb
|
||||
lftp
|
||||
libICE
|
||||
libSM
|
||||
libX11
|
||||
@@ -1857,6 +1943,7 @@ libassuan
|
||||
libasyncns
|
||||
libatasmart
|
||||
libatomic_ops
|
||||
libavtp
|
||||
libb64
|
||||
libblockdev
|
||||
libburn
|
||||
@@ -1884,6 +1971,7 @@ libe-book
|
||||
libepoxy
|
||||
libepubgen
|
||||
liberasurecode
|
||||
liberation-fonts
|
||||
libetonyek
|
||||
libev
|
||||
libevdev
|
||||
@@ -1891,6 +1979,7 @@ libevent
|
||||
libexif
|
||||
libexttextcat
|
||||
libffi
|
||||
libffmpeg-stub
|
||||
libfontenc
|
||||
libfprint
|
||||
libfreehand
|
||||
@@ -1944,6 +2033,7 @@ libmbim
|
||||
libmediaart
|
||||
libmicrohttpd
|
||||
libmnl
|
||||
libmodbus
|
||||
libmodulemd
|
||||
libmspack
|
||||
libmspub
|
||||
@@ -1997,9 +2087,11 @@ libsigc++
|
||||
libsmbios
|
||||
libsmi
|
||||
libsndfile
|
||||
libsodium
|
||||
libsolv
|
||||
libsoup
|
||||
libspectre
|
||||
libspiro
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
@@ -2009,9 +2101,11 @@ libtasn1
|
||||
libthai
|
||||
libtheora
|
||||
libtirpc
|
||||
libtk-img
|
||||
libtool
|
||||
libudev0-shim
|
||||
libuev
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
libusb
|
||||
@@ -2035,6 +2129,7 @@ libwpd
|
||||
libwpg
|
||||
libwps
|
||||
libxcb
|
||||
libxdg-basedir
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
libxkbcommon
|
||||
@@ -2049,6 +2144,8 @@ libyami-utils
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
lightdm
|
||||
lightdm-gtk-greeter
|
||||
linecache2
|
||||
links
|
||||
linux
|
||||
@@ -2059,6 +2156,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
|
||||
@@ -2071,6 +2170,7 @@ linux-steam-integration
|
||||
linux-tools
|
||||
linuxptp
|
||||
lksctp-tools
|
||||
llfuse
|
||||
llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
@@ -2083,9 +2183,12 @@ lsacpi
|
||||
lshw
|
||||
lskat
|
||||
lsof
|
||||
lsscsi
|
||||
ltp
|
||||
ltrace
|
||||
lua
|
||||
lualgi
|
||||
luarocks
|
||||
lxml
|
||||
lz4
|
||||
lzip
|
||||
@@ -2108,10 +2211,12 @@ mcelog
|
||||
mdadm
|
||||
mdds
|
||||
media-player-info
|
||||
mediasdk
|
||||
meld
|
||||
memcached
|
||||
memkind
|
||||
memshrinker
|
||||
mercurial
|
||||
mesa
|
||||
mesa-demos
|
||||
meson
|
||||
@@ -2132,6 +2237,7 @@ mistune
|
||||
mixer-tools
|
||||
mkfontdir
|
||||
mkfontscale
|
||||
mkl-dnn
|
||||
mkosi
|
||||
mobile-broadband-provider-info
|
||||
mock
|
||||
@@ -2158,10 +2264,14 @@ mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpmath
|
||||
mraa
|
||||
msgpack
|
||||
msm
|
||||
msmtp
|
||||
msr-tools
|
||||
msrest
|
||||
mstflint
|
||||
mtd-utils
|
||||
mtdev
|
||||
mtr
|
||||
multidict
|
||||
@@ -2173,6 +2283,8 @@ musl
|
||||
mutagen
|
||||
mutt
|
||||
mutter
|
||||
mxnet
|
||||
mycroft-core
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mypy_extensions
|
||||
@@ -2194,6 +2306,7 @@ net-snmp
|
||||
net-tools
|
||||
netaddr
|
||||
netbase
|
||||
netcdf
|
||||
netdisco
|
||||
netifaces
|
||||
nettle
|
||||
@@ -2229,8 +2342,10 @@ nrpe
|
||||
nspr
|
||||
nss
|
||||
nss-altfiles
|
||||
nss-pam-ldapd
|
||||
ntfs-3g
|
||||
ntlm-auth
|
||||
ntp
|
||||
ntplib
|
||||
numactl
|
||||
numatop
|
||||
@@ -2251,6 +2366,7 @@ olefile
|
||||
onig
|
||||
onnx
|
||||
opa-psm2
|
||||
opcodes
|
||||
open-iscsi
|
||||
open-isns
|
||||
open-lldp
|
||||
@@ -2322,12 +2438,18 @@ p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacrunner
|
||||
padaos
|
||||
padatious
|
||||
paho-mqtt
|
||||
paho.mqtt.c
|
||||
paho.mqtt.cpp
|
||||
palapeli
|
||||
pandas
|
||||
pandoc
|
||||
pandocfilters
|
||||
pango
|
||||
pangomm
|
||||
paper-icon-theme
|
||||
parallel
|
||||
parameter-framework
|
||||
paramiko
|
||||
@@ -2340,6 +2462,7 @@ passlib
|
||||
patch
|
||||
patchutils
|
||||
pathlib
|
||||
pathlib2
|
||||
patsy
|
||||
pavucontrol
|
||||
pbr
|
||||
@@ -2652,6 +2775,7 @@ perl-Image-Size
|
||||
perl-Import-Into
|
||||
perl-Importer
|
||||
perl-Inline
|
||||
perl-Inline-C
|
||||
perl-JSON
|
||||
perl-JSON-MaybeXS
|
||||
perl-JSON-RPC
|
||||
@@ -2747,6 +2871,7 @@ perl-Net-IDN-Encode
|
||||
perl-Net-INET6Glue
|
||||
perl-Net-Ident
|
||||
perl-Net-MAC
|
||||
perl-Net-MQTT
|
||||
perl-Net-NTP
|
||||
perl-Net-OpenID-Common
|
||||
perl-Net-OpenID-Consumer
|
||||
@@ -2804,8 +2929,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
|
||||
@@ -2874,7 +2997,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
|
||||
@@ -2891,6 +3014,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
|
||||
@@ -2907,6 +3031,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
|
||||
@@ -3050,6 +3175,7 @@ portend
|
||||
positional
|
||||
posix_ipc
|
||||
postgresql
|
||||
povray
|
||||
powerline-fonts
|
||||
powertop
|
||||
poxml
|
||||
@@ -3071,6 +3197,7 @@ pth
|
||||
ptyprocess
|
||||
pugixml
|
||||
pulseaudio
|
||||
pulsectl
|
||||
purpose
|
||||
pv
|
||||
pwgen
|
||||
@@ -3078,12 +3205,15 @@ py
|
||||
pyOpenSSL
|
||||
pyScss
|
||||
pyaes
|
||||
pyalsaaudio
|
||||
pyaml
|
||||
pyasn1
|
||||
pyasn1-modules
|
||||
pyatspi
|
||||
pybind11
|
||||
pycadf
|
||||
pycairo
|
||||
pycam
|
||||
pycodestyle
|
||||
pycparser
|
||||
pycrypto
|
||||
@@ -3093,16 +3223,20 @@ pydot
|
||||
pydot_ng
|
||||
pydotplus
|
||||
pyeclib
|
||||
pyee
|
||||
pyemd
|
||||
pyflakes
|
||||
pygobject
|
||||
pygobject-legacy
|
||||
pygtk
|
||||
pyinotify
|
||||
pykerberos
|
||||
pylama
|
||||
pyliblzma
|
||||
pylint
|
||||
pymemcache
|
||||
pymongo
|
||||
pynacl
|
||||
pyotp
|
||||
pypandoc
|
||||
pyparsing
|
||||
pyperclip
|
||||
@@ -3110,6 +3244,7 @@ pypowervm
|
||||
pyquery
|
||||
pyreadline
|
||||
pyrfc3339
|
||||
pyroma
|
||||
pyroute2
|
||||
pyrsistent
|
||||
pysaml2
|
||||
@@ -3117,8 +3252,10 @@ pysendfile
|
||||
pyserial
|
||||
pysnmp
|
||||
pytest
|
||||
pytest-asyncio
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-randomly
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
pytest-runner
|
||||
@@ -3131,13 +3268,19 @@ 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
|
||||
python-keystoneclient
|
||||
python-krbV
|
||||
@@ -3151,6 +3294,7 @@ python-mock
|
||||
python-multilib
|
||||
python-neutronclient
|
||||
python-novaclient
|
||||
python-openid
|
||||
python-openstackclient
|
||||
python-openzwave
|
||||
python-perf
|
||||
@@ -3163,13 +3307,18 @@ 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
|
||||
pyudev
|
||||
pywbem
|
||||
@@ -3184,6 +3333,7 @@ qpdf
|
||||
qpid-python
|
||||
qqc2-desktop-style
|
||||
qrencode
|
||||
qscintilla
|
||||
qt-creator
|
||||
qt3d
|
||||
qtbase
|
||||
@@ -3240,11 +3390,13 @@ redsocks
|
||||
reno
|
||||
reportlab
|
||||
repoze.lru
|
||||
repoze.sphinx.autointerface
|
||||
repoze.who
|
||||
requests
|
||||
requests-kerberos
|
||||
requests-mock
|
||||
requests-ntlm
|
||||
requests-oauthlib
|
||||
requests-toolbelt
|
||||
requestsexceptions
|
||||
rest
|
||||
@@ -3265,6 +3417,7 @@ rsa
|
||||
rsync
|
||||
rt-tests
|
||||
rtslib-fb
|
||||
ruamel-yaml
|
||||
ruby
|
||||
runc
|
||||
rust-std32
|
||||
@@ -3298,6 +3451,7 @@ sed
|
||||
selenium
|
||||
semantic_version
|
||||
serf
|
||||
serpent
|
||||
setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
@@ -3309,12 +3463,14 @@ sg3_utils
|
||||
shadow
|
||||
shared-mime-info
|
||||
sharutils
|
||||
shell
|
||||
shim
|
||||
siege
|
||||
simg-tools
|
||||
simple-scan
|
||||
simplegeneric
|
||||
simplejson
|
||||
singledispatch
|
||||
sip
|
||||
six
|
||||
slang
|
||||
@@ -3337,6 +3493,7 @@ source-highlight
|
||||
sox
|
||||
spandsp
|
||||
spark-dep
|
||||
spectacle
|
||||
speex
|
||||
speexdsp
|
||||
sphinx-feature-classification
|
||||
@@ -3345,6 +3502,7 @@ sphinxcontrib-apidoc
|
||||
sphinxcontrib-blockdiag
|
||||
sphinxcontrib-httpdomain
|
||||
sphinxcontrib-newsfeed
|
||||
sphinxcontrib-programoutput
|
||||
sphinxcontrib-websupport
|
||||
spi-tools
|
||||
spice
|
||||
@@ -3382,7 +3540,7 @@ swig
|
||||
swupd-client
|
||||
swupd-overdue
|
||||
swupd-probe
|
||||
swupd-server
|
||||
sxhkd
|
||||
sympy
|
||||
syndication
|
||||
synergy
|
||||
@@ -3403,6 +3561,7 @@ taskflow
|
||||
taskwarrior
|
||||
tbb
|
||||
tcl
|
||||
tclx
|
||||
tcpdump
|
||||
tdb
|
||||
telemetrics-client
|
||||
@@ -3429,6 +3588,7 @@ text-unidecode
|
||||
tflearn
|
||||
tgt
|
||||
thermal_daemon
|
||||
thermal_monitor
|
||||
thin-provisioning-tools
|
||||
threadweaver
|
||||
thrift
|
||||
@@ -3439,6 +3599,7 @@ tiff
|
||||
tig
|
||||
tigervnc
|
||||
time
|
||||
tini
|
||||
tinyrpc
|
||||
tinyxml2
|
||||
tiptop
|
||||
@@ -3451,6 +3612,10 @@ tornado
|
||||
totem
|
||||
totem-pl-parser
|
||||
tox
|
||||
tpm2-abrmd
|
||||
tpm2-simulator
|
||||
tpm2-tools
|
||||
tpm2-tss
|
||||
tqdm
|
||||
traceback2
|
||||
traceroute
|
||||
@@ -3461,6 +3626,7 @@ tree
|
||||
trollius
|
||||
typed-ast
|
||||
typing
|
||||
typing_extensions
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
@@ -3475,6 +3641,7 @@ unison
|
||||
unittest2
|
||||
unixODBC
|
||||
unzip
|
||||
upm
|
||||
upower
|
||||
uritemplate
|
||||
urlgrabber
|
||||
@@ -3509,7 +3676,6 @@ voluptuous
|
||||
voluptuous-serialize
|
||||
vsqlite
|
||||
vte
|
||||
vulkan-sdk
|
||||
waffle
|
||||
waitress
|
||||
warlock
|
||||
@@ -3528,11 +3694,13 @@ weston
|
||||
wget
|
||||
wheel
|
||||
which
|
||||
whois
|
||||
widgetsnbextension
|
||||
winpdb
|
||||
wireless-regdb-master
|
||||
wireshark
|
||||
woff2
|
||||
wok
|
||||
wol
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
@@ -3618,7 +3786,9 @@ xwd
|
||||
xwininfo
|
||||
xz
|
||||
yajl
|
||||
yakuake
|
||||
yaml
|
||||
yaml-cpp
|
||||
yarl
|
||||
yarn
|
||||
yasm
|
||||
@@ -3627,7 +3797,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 \
|
||||
|
||||
+12
-3
@@ -6,6 +6,7 @@ SERVERCA=""
|
||||
CLIENTCA=""
|
||||
WORKSPACE="clearlinux"
|
||||
PACKAGE_REPOS=
|
||||
NEEDS_KVM_GROUP=
|
||||
|
||||
help() {
|
||||
printf "%s\n" >&2 "Usage: $SCRIPT [options]" \
|
||||
@@ -115,6 +116,10 @@ required_progs() {
|
||||
|
||||
required_progs
|
||||
|
||||
if ! groups | grep -qw kvm; then
|
||||
NEEDS_KVM_GROUP=1
|
||||
fi
|
||||
|
||||
echo "Initializing development workspace in \"$WORKSPACE\" . . ."
|
||||
|
||||
mkdir "$WORKSPACE"
|
||||
@@ -146,8 +151,10 @@ if [ "$USE_KOJI" ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "Adding user to kvm group . . ."
|
||||
sudo usermod -a -G kvm $USER
|
||||
if [ -n "$NEEDS_KVM_GROUP" ]; then
|
||||
echo "Adding user to kvm group . . ."
|
||||
sudo usermod -a -G kvm $USER
|
||||
fi
|
||||
|
||||
echo "Cloning special project repositories . . ."
|
||||
make ${JOBS_ARG} clone-projects
|
||||
@@ -179,7 +186,9 @@ if [ -z "$PACKAGE_REPOS" ]; then
|
||||
echo "NOTE: To clone all package repos, run \"cd $WORKSPACE; make [-j NUM] clone-packages\""
|
||||
echo "NOTE: To clone a single package repo with NAME, run \"cd $WORKSPACE; make clone_NAME\""
|
||||
fi
|
||||
echo 'NOTE: logout and log back in to finalize the setup process'
|
||||
if [ -n "$NEEDS_KVM_GROUP" ]; then
|
||||
echo 'NOTE: logout and log back in to finalize the setup process'
|
||||
fi
|
||||
|
||||
|
||||
# vi: ft=sh sw=2 et sts=2
|
||||
|
||||
Reference in New Issue
Block a user