mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
67 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| 2212f350e9 | |||
| 75a06769ea | |||
| 797f6c050c | |||
| 3169a8db4c | |||
| c6e5d09862 | |||
| 76d551ae77 | |||
| 92202763aa | |||
| 3a666723c1 | |||
| ed7e63d752 | |||
| bf6c49b8b9 | |||
| cc0b7da35a | |||
| 33febf4489 | |||
| 52ab50a9c7 | |||
| 70d40d9b59 | |||
| 8b709c2e1b | |||
| ea4e713277 | |||
| ca817a8c5e | |||
| db80ffd052 |
+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.
@@ -2,10 +2,14 @@ Babel
|
||||
Botan
|
||||
CUnit
|
||||
Cheetah
|
||||
CherryPy
|
||||
ConfigArgParse
|
||||
Counter
|
||||
Cython
|
||||
Django
|
||||
Edge-optimized-models
|
||||
Flask
|
||||
Flask-RESTful
|
||||
FlatBuffers
|
||||
FreeRDP
|
||||
GConf
|
||||
@@ -21,6 +25,7 @@ LibRaw
|
||||
LibVNCServer
|
||||
Linux-PAM
|
||||
LuaJIT
|
||||
M2Crypto
|
||||
Mako
|
||||
Markdown
|
||||
MarkupSafe
|
||||
@@ -37,6 +42,7 @@ Pint
|
||||
PyDispatcher
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyNaCl
|
||||
PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
@@ -86,6 +92,7 @@ R-GeneralizedHyperbolic
|
||||
R-GlobalOptions
|
||||
R-Guerry
|
||||
R-Hmisc
|
||||
R-ICEbox
|
||||
R-ICS
|
||||
R-ICSNP
|
||||
R-IRdisplay
|
||||
@@ -226,6 +233,7 @@ R-circlize
|
||||
R-classInt
|
||||
R-cli
|
||||
R-clipr
|
||||
R-clisymbols
|
||||
R-clue
|
||||
R-clustMixType
|
||||
R-clusterGeneration
|
||||
@@ -344,6 +352,7 @@ R-formatR
|
||||
R-fossil
|
||||
R-fpc
|
||||
R-fracdiff
|
||||
R-fs
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
@@ -364,6 +373,7 @@ R-ggplot2
|
||||
R-ggplot2movies
|
||||
R-ggridges
|
||||
R-ggvis
|
||||
R-gh
|
||||
R-git2r
|
||||
R-glmnet
|
||||
R-globals
|
||||
@@ -398,6 +408,7 @@ R-hypergeo
|
||||
R-ica
|
||||
R-igraph
|
||||
R-import
|
||||
R-ini
|
||||
R-inline
|
||||
R-inum
|
||||
R-ipred
|
||||
@@ -440,10 +451,12 @@ R-locfit
|
||||
R-logspline
|
||||
R-loo
|
||||
R-lpSolve
|
||||
R-lsei
|
||||
R-lsmeans
|
||||
R-lubridate
|
||||
R-mFilter
|
||||
R-magic
|
||||
R-magick
|
||||
R-magrittr
|
||||
R-manipulate
|
||||
R-manipulateWidget
|
||||
@@ -497,6 +510,7 @@ R-neuralnet
|
||||
R-nleqslv
|
||||
R-nloptr
|
||||
R-nortest
|
||||
R-npsurv
|
||||
R-numDeriv
|
||||
R-nws
|
||||
R-nycflights13
|
||||
@@ -519,6 +533,8 @@ R-pbmcapply
|
||||
R-pcaPP
|
||||
R-pcse
|
||||
R-pdfCluster
|
||||
R-pdftools
|
||||
R-pdp
|
||||
R-permute
|
||||
R-phangorn
|
||||
R-pheatmap
|
||||
@@ -582,8 +598,10 @@ R-randomForest
|
||||
R-randomNames
|
||||
R-randtoolbox
|
||||
R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-rcmdcheck
|
||||
R-reactR
|
||||
R-readr
|
||||
R-readstata13
|
||||
@@ -593,6 +611,8 @@ R-registry
|
||||
R-relimp
|
||||
R-rematch
|
||||
R-rematch2
|
||||
R-remote
|
||||
R-remotes
|
||||
R-rentrez
|
||||
R-repr
|
||||
R-reprex
|
||||
@@ -628,6 +648,7 @@ R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstudioapi
|
||||
R-rsvg
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-sROC
|
||||
@@ -643,6 +664,7 @@ R-sendmailR
|
||||
R-seqinr
|
||||
R-seriation
|
||||
R-seroincidence
|
||||
R-sessioninfo
|
||||
R-setRNG
|
||||
R-sfsmisc
|
||||
R-sgeostat
|
||||
@@ -721,6 +743,7 @@ R-ucminf
|
||||
R-urca
|
||||
R-urltools
|
||||
R-uroot
|
||||
R-usethis
|
||||
R-utf8
|
||||
R-uuid
|
||||
R-varImp
|
||||
@@ -742,6 +765,7 @@ R-withr
|
||||
R-worrms
|
||||
R-xfun
|
||||
R-xml2
|
||||
R-xopen
|
||||
R-xtable
|
||||
R-xts
|
||||
R-yaml
|
||||
@@ -771,7 +795,11 @@ SuiteSparse
|
||||
Tempita
|
||||
Theano
|
||||
Thunar
|
||||
UkPostcodeParser
|
||||
Vertex-theme
|
||||
Vulkan-Headers
|
||||
Vulkan-Loader
|
||||
Vulkan-Tools
|
||||
WALinuxAgent
|
||||
WSGIProxy2
|
||||
WSME
|
||||
@@ -837,7 +865,9 @@ alsa-lib
|
||||
alsa-plugins
|
||||
alsa-utils
|
||||
amqp
|
||||
amtk
|
||||
analitza
|
||||
aniso8601
|
||||
ansible
|
||||
anyjson
|
||||
apache-ant
|
||||
@@ -858,6 +888,7 @@ argparse
|
||||
ark
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
asio
|
||||
asn1crypto
|
||||
aspell
|
||||
@@ -912,6 +943,7 @@ bashdb
|
||||
bats
|
||||
bazel
|
||||
bc
|
||||
bcc
|
||||
bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
@@ -924,6 +956,7 @@ bleach
|
||||
blinken
|
||||
blinker
|
||||
blktrace
|
||||
blockdiag
|
||||
bluedevil
|
||||
bluez
|
||||
bluez-qt
|
||||
@@ -941,6 +974,7 @@ breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
bridge-utils
|
||||
bro
|
||||
brotli
|
||||
bsdiff
|
||||
btrfs-progs
|
||||
@@ -996,9 +1030,9 @@ cgdb
|
||||
cgit
|
||||
chardet
|
||||
check
|
||||
check-manifest
|
||||
cheese
|
||||
cheroot
|
||||
cherrypy
|
||||
chrome-gnome-shell
|
||||
chrony
|
||||
chrpath
|
||||
@@ -1026,6 +1060,7 @@ clr-find-bundle
|
||||
clr-fwupd-hooks
|
||||
clr-hardware-files
|
||||
clr-init
|
||||
clr-installer
|
||||
clr-man-pages
|
||||
clr-power-tweaks
|
||||
clr-python-timestamp
|
||||
@@ -1073,9 +1108,11 @@ colorama
|
||||
colord
|
||||
colord-gtk
|
||||
comedilib
|
||||
commonmark
|
||||
compat-SDL2-soname1
|
||||
compat-cryptsetup-soname4
|
||||
compat-efivar-soname0
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gegl
|
||||
compat-gegl-0.3
|
||||
@@ -1086,10 +1123,12 @@ compat-hdf5-soname10
|
||||
compat-hyperscan-soname4
|
||||
compat-ipset-soname10
|
||||
compat-libical-soname2
|
||||
compat-libidn-soname11
|
||||
compat-libpng-soname12
|
||||
compat-libwebp-soname6
|
||||
compat-llvm-soname4
|
||||
compat-llvm-soname5
|
||||
compat-llvm-soname6
|
||||
compat-mpfr-soname4
|
||||
compat-opencv-soname32
|
||||
compat-opencv-soname33
|
||||
@@ -1113,8 +1152,10 @@ cov-core
|
||||
coverage
|
||||
cpio
|
||||
cppcheck
|
||||
cpprestsdk
|
||||
cppunit
|
||||
cpuid
|
||||
cpuloadgen
|
||||
cracklib
|
||||
crcmod
|
||||
createrepo_c
|
||||
@@ -1139,6 +1180,7 @@ cyrus-sasl
|
||||
dapl
|
||||
darktable
|
||||
dask
|
||||
datefudge
|
||||
db
|
||||
dbus
|
||||
dbus-broker
|
||||
@@ -1154,6 +1196,7 @@ defusedxml
|
||||
dejagnu
|
||||
deprecation
|
||||
desktop-file-utils
|
||||
devhelp
|
||||
dfc
|
||||
dfu-util
|
||||
dhcp
|
||||
@@ -1173,6 +1216,8 @@ django-discover-runner
|
||||
django-nose
|
||||
django-pyscss
|
||||
django_compressor
|
||||
dldt
|
||||
dlt-daemon
|
||||
dmenu
|
||||
dmidecode
|
||||
dnf
|
||||
@@ -1196,12 +1241,14 @@ dosfstools
|
||||
double-conversion
|
||||
dovecot
|
||||
doxygen
|
||||
dpcontracts
|
||||
dpdk
|
||||
dracut
|
||||
dragon
|
||||
drkonqi
|
||||
dstat
|
||||
dtc
|
||||
dtopt
|
||||
dulwich
|
||||
duperemove
|
||||
dwarves
|
||||
@@ -1217,8 +1264,11 @@ efivar
|
||||
eigen
|
||||
elasticsearch
|
||||
elasticsearch-dep
|
||||
electric-fence
|
||||
elementary-xfce
|
||||
elfutils
|
||||
elixir
|
||||
ell
|
||||
emacs
|
||||
empy
|
||||
enchant
|
||||
@@ -1272,6 +1322,7 @@ flake8-docstrings
|
||||
flake8-import-order
|
||||
flake8-polyfill
|
||||
flatpak
|
||||
flatpak-builder
|
||||
fldigi
|
||||
flex
|
||||
flmsg
|
||||
@@ -1283,13 +1334,17 @@ font-adobe-75dpi
|
||||
font-bitstream-type1
|
||||
font-util
|
||||
fontconfig
|
||||
fontforge
|
||||
fonttools
|
||||
frameworkintegration
|
||||
freeglut
|
||||
freeipmi
|
||||
freetype
|
||||
freezegun
|
||||
fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
funcparserlib
|
||||
funcsigs
|
||||
functools32
|
||||
fuse
|
||||
@@ -1362,6 +1417,7 @@ gnome-color-manager
|
||||
gnome-common
|
||||
gnome-control-center
|
||||
gnome-desktop
|
||||
gnome-disk-utility
|
||||
gnome-flashback
|
||||
gnome-font-viewer
|
||||
gnome-icon-theme
|
||||
@@ -1384,7 +1440,7 @@ gnome-system-monitor
|
||||
gnome-terminal
|
||||
gnome-themes-standard
|
||||
gnome-todo
|
||||
gnome-tweak-tool
|
||||
gnome-tweaks
|
||||
gnome-user-docs
|
||||
gnome-video-effects
|
||||
gnome-weather
|
||||
@@ -1400,6 +1456,7 @@ gom
|
||||
goocanvas
|
||||
google-api-python-client
|
||||
google-apitools
|
||||
google-reauth
|
||||
googletest
|
||||
gperf
|
||||
gperftools
|
||||
@@ -1443,6 +1500,7 @@ gtkmm3
|
||||
gtksourceview
|
||||
gtkspell3
|
||||
guile
|
||||
gupnp-av
|
||||
gutenprint
|
||||
gvfs
|
||||
gvim
|
||||
@@ -1462,6 +1520,7 @@ help2man
|
||||
hexchat
|
||||
hgtools
|
||||
hicolor-icon-theme
|
||||
hold
|
||||
home-assistant
|
||||
horizon
|
||||
hostname
|
||||
@@ -1485,6 +1544,8 @@ i3status
|
||||
ias
|
||||
iasimage
|
||||
ibus
|
||||
ibus-libpinyin
|
||||
ibus-table
|
||||
icalendar
|
||||
icdiff
|
||||
iceauth
|
||||
@@ -1492,7 +1553,10 @@ icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
idna-ssl
|
||||
ifaddr
|
||||
iftop
|
||||
ilmbase
|
||||
image
|
||||
imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
@@ -1502,14 +1566,18 @@ influxdb
|
||||
iniparse
|
||||
init-rdahead
|
||||
inotify-tools
|
||||
intel-gmmlib
|
||||
intel-gpu-tools
|
||||
intel-hybrid-driver
|
||||
intel-media-driver
|
||||
intltool
|
||||
ioc-cbc-tools
|
||||
ioping
|
||||
iotop
|
||||
ipaddr
|
||||
ipaddress
|
||||
ipdb
|
||||
ipdbplugin
|
||||
iperf
|
||||
ipmctl
|
||||
ipmitool
|
||||
@@ -1566,6 +1634,7 @@ jupyter_console
|
||||
jupyter_core
|
||||
jupyterlab
|
||||
jupyterlab_launcher
|
||||
jupyterlab_server
|
||||
kactivities
|
||||
kactivities-stats
|
||||
kactivitymanagerd
|
||||
@@ -1678,6 +1747,7 @@ killbots
|
||||
kimageformats
|
||||
kimagemapeditor
|
||||
kimap
|
||||
kimchi
|
||||
kinfocenter
|
||||
kinit
|
||||
kio
|
||||
@@ -1738,6 +1808,7 @@ kqtquickcharts
|
||||
krb5
|
||||
krdc
|
||||
kreversi
|
||||
krita
|
||||
kross
|
||||
kruler
|
||||
krunner
|
||||
@@ -1824,6 +1895,7 @@ libappindicator
|
||||
libarchive
|
||||
libarchive-c
|
||||
libassuan
|
||||
libasyncns
|
||||
libatasmart
|
||||
libatomic_ops
|
||||
libb64
|
||||
@@ -1842,6 +1914,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libdaemon
|
||||
libdatrie
|
||||
libdazzle
|
||||
libdbusmenu
|
||||
@@ -1852,6 +1925,7 @@ libe-book
|
||||
libepoxy
|
||||
libepubgen
|
||||
liberasurecode
|
||||
liberation-fonts
|
||||
libetonyek
|
||||
libev
|
||||
libevdev
|
||||
@@ -1860,6 +1934,7 @@ libexif
|
||||
libexttextcat
|
||||
libffi
|
||||
libfontenc
|
||||
libfprint
|
||||
libfreehand
|
||||
libgcrypt
|
||||
libgd
|
||||
@@ -1883,10 +1958,12 @@ libgusb
|
||||
libgweather
|
||||
libical
|
||||
libidn
|
||||
libidn2
|
||||
libindicator
|
||||
libinput
|
||||
libiscsi
|
||||
libisofs
|
||||
libite
|
||||
libjpeg-turbo
|
||||
libjpeg-turbo-soname8
|
||||
libkcddb
|
||||
@@ -1937,6 +2014,8 @@ libpagemaker
|
||||
libpcap
|
||||
libpciaccess
|
||||
libpeas
|
||||
libpfm
|
||||
libpinyin
|
||||
libpipeline
|
||||
libpng
|
||||
libpsl
|
||||
@@ -1960,9 +2039,11 @@ libsigc++
|
||||
libsmbios
|
||||
libsmi
|
||||
libsndfile
|
||||
libsodium
|
||||
libsolv
|
||||
libsoup
|
||||
libspectre
|
||||
libspiro
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
@@ -1974,6 +2055,8 @@ libtheora
|
||||
libtirpc
|
||||
libtool
|
||||
libudev0-shim
|
||||
libuev
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
libusb
|
||||
@@ -2011,6 +2094,8 @@ libyami-utils
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
lightdm
|
||||
lightdm-gtk-greeter
|
||||
linecache2
|
||||
links
|
||||
linux
|
||||
@@ -2021,18 +2106,24 @@ 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
|
||||
linux-lts
|
||||
linux-oracle
|
||||
linux-pk414
|
||||
linux-pk414-preempt-rt
|
||||
linux-preempt-rt
|
||||
linux-steam-integration
|
||||
linux-tools
|
||||
linuxptp
|
||||
lksctp-tools
|
||||
llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
locket
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
@@ -2041,9 +2132,11 @@ lsacpi
|
||||
lshw
|
||||
lskat
|
||||
lsof
|
||||
lsscsi
|
||||
ltp
|
||||
ltrace
|
||||
lua
|
||||
luarocks
|
||||
lxml
|
||||
lz4
|
||||
lzip
|
||||
@@ -2066,6 +2159,7 @@ mcelog
|
||||
mdadm
|
||||
mdds
|
||||
media-player-info
|
||||
mediasdk
|
||||
meld
|
||||
memcached
|
||||
memkind
|
||||
@@ -2090,6 +2184,7 @@ mistune
|
||||
mixer-tools
|
||||
mkfontdir
|
||||
mkfontscale
|
||||
mkl-dnn
|
||||
mkosi
|
||||
mobile-broadband-provider-info
|
||||
mock
|
||||
@@ -2116,6 +2211,7 @@ mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpmath
|
||||
mraa
|
||||
msgpack
|
||||
msmtp
|
||||
msr-tools
|
||||
@@ -2133,6 +2229,7 @@ mutt
|
||||
mutter
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mypy_extensions
|
||||
mythes
|
||||
nagios-plugins
|
||||
nano
|
||||
@@ -2186,8 +2283,11 @@ nrpe
|
||||
nspr
|
||||
nss
|
||||
nss-altfiles
|
||||
nss-pam-ldapd
|
||||
ntfs-3g
|
||||
ntlm-auth
|
||||
ntp
|
||||
ntplib
|
||||
numactl
|
||||
numatop
|
||||
numba
|
||||
@@ -2201,11 +2301,13 @@ ocaml
|
||||
ocl-icd
|
||||
octave
|
||||
offlineimap
|
||||
oiio
|
||||
okular
|
||||
olefile
|
||||
onig
|
||||
onnx
|
||||
opa-psm2
|
||||
opcodes
|
||||
open-iscsi
|
||||
open-isns
|
||||
open-lldp
|
||||
@@ -2215,6 +2317,7 @@ openal-soft
|
||||
openblas
|
||||
openconnect
|
||||
opencv
|
||||
openexr
|
||||
openjade
|
||||
openjdk
|
||||
openjdk9
|
||||
@@ -2276,6 +2379,9 @@ p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacrunner
|
||||
paho-mqtt
|
||||
paho.mqtt.c
|
||||
paho.mqtt.cpp
|
||||
palapeli
|
||||
pandas
|
||||
pandoc
|
||||
@@ -2288,6 +2394,7 @@ paramiko
|
||||
parley
|
||||
parsedatetime
|
||||
parso
|
||||
partd
|
||||
parted
|
||||
passlib
|
||||
patch
|
||||
@@ -2317,6 +2424,7 @@ perl-AnyEvent
|
||||
perl-AnyEvent-CacheDNS
|
||||
perl-Apache-Htpasswd
|
||||
perl-Apache-Session
|
||||
perl-App-cpanminus
|
||||
perl-Archive-Cpio
|
||||
perl-Archive-Extract
|
||||
perl-Archive-Tar-Wrapper
|
||||
@@ -2333,6 +2441,8 @@ perl-B-Hooks-OP-Check
|
||||
perl-B-Keywords
|
||||
perl-BSD-Resource
|
||||
perl-Biblio-EndnoteStyle
|
||||
perl-Browser-Open
|
||||
perl-Business-ISBN
|
||||
perl-Business-ISBN-Data
|
||||
perl-Business-ISMN
|
||||
perl-Business-ISSN
|
||||
@@ -2346,6 +2456,7 @@ perl-CPAN-Meta-Check
|
||||
perl-CPAN-Perl-Releases
|
||||
perl-CSS-DOM
|
||||
perl-CSS-Minifier-XS
|
||||
perl-CSS-Tiny
|
||||
perl-Cache-Simple-TimedExpiry
|
||||
perl-Calendar-Simple
|
||||
perl-Canary-Stability
|
||||
@@ -2385,6 +2496,7 @@ perl-Clone-PP
|
||||
perl-Compress-Bzip2
|
||||
perl-Compress-Raw-Lzma
|
||||
perl-Config-Any
|
||||
perl-Config-General
|
||||
perl-Config-Grammar
|
||||
perl-Config-IniFiles
|
||||
perl-Config-Std
|
||||
@@ -2435,6 +2547,7 @@ perl-Data-Uniqid
|
||||
perl-Data-Validate-IP
|
||||
perl-DateTime
|
||||
perl-DateTime-Format-Builder
|
||||
perl-DateTime-Format-DateParse
|
||||
perl-DateTime-Format-Mail
|
||||
perl-DateTime-Format-MySQL
|
||||
perl-DateTime-Format-Pg
|
||||
@@ -2450,6 +2563,7 @@ perl-Devel-CheckOS
|
||||
perl-Devel-Confess
|
||||
perl-Devel-Cover
|
||||
perl-Devel-Cycle
|
||||
perl-Devel-EnforceEncapsulation
|
||||
perl-Devel-GlobalDestruction
|
||||
perl-Devel-Hide
|
||||
perl-Devel-OverloadInfo
|
||||
@@ -2528,6 +2642,7 @@ perl-File-pushd
|
||||
perl-Filesys-Df
|
||||
perl-Filesys-Notify-Simple
|
||||
perl-Font-AFM
|
||||
perl-Font-TTF
|
||||
perl-FreezeThaw
|
||||
perl-Frontier-RPC
|
||||
perl-Future
|
||||
@@ -2597,6 +2712,7 @@ perl-Image-Size
|
||||
perl-Import-Into
|
||||
perl-Importer
|
||||
perl-Inline
|
||||
perl-Inline-C
|
||||
perl-JSON
|
||||
perl-JSON-MaybeXS
|
||||
perl-JSON-RPC
|
||||
@@ -2674,6 +2790,7 @@ perl-Module-Util
|
||||
perl-Module-Versions-Report
|
||||
perl-Mojo-IOLoop-ReadWriteProcess
|
||||
perl-Mojo-Pg
|
||||
perl-Mojo-RabbitMQ-Client
|
||||
perl-Mojolicious
|
||||
perl-Mojolicious-Plugin-AssetPack
|
||||
perl-Mojolicious-Plugin-RenderFile
|
||||
@@ -2691,6 +2808,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
|
||||
@@ -2713,6 +2831,7 @@ perl-POD2-Base
|
||||
perl-POSIX-strftime-Compiler
|
||||
perl-Package-Constants
|
||||
perl-Package-DeprecationManager
|
||||
perl-Package-Generator
|
||||
perl-Package-New
|
||||
perl-Package-Stash
|
||||
perl-Package-Stash-XS
|
||||
@@ -2720,6 +2839,7 @@ perl-Package-Variant
|
||||
perl-PadWalker
|
||||
perl-Palm-PDB
|
||||
perl-Parallel-ForkManager
|
||||
perl-Parallel-Iterator
|
||||
perl-Params-Classify
|
||||
perl-Params-Util
|
||||
perl-Params-Validate
|
||||
@@ -2730,6 +2850,7 @@ perl-Parse-RecDescent
|
||||
perl-Path-Class
|
||||
perl-Path-Tiny
|
||||
perl-Pegex
|
||||
perl-Perl-Tidy
|
||||
perl-Perl-Version
|
||||
perl-Perl4-CoreLibs
|
||||
perl-Perl6-Export
|
||||
@@ -2745,8 +2866,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
|
||||
@@ -2828,9 +2947,11 @@ perl-Test-Identity
|
||||
perl-Test-LeakTrace
|
||||
perl-Test-LectroTest
|
||||
perl-Test-LongString
|
||||
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
|
||||
@@ -2844,8 +2965,10 @@ perl-Test-RequiresInternet
|
||||
perl-Test-SharedFork
|
||||
perl-Test-Simple
|
||||
perl-Test-Strict
|
||||
perl-Test-Synopsis
|
||||
perl-Test-TCP
|
||||
perl-Test-Taint
|
||||
perl-Test-Trap
|
||||
perl-Test-UseAllModules
|
||||
perl-Test-Warn
|
||||
perl-Test-Warnings
|
||||
@@ -2879,6 +3002,7 @@ perl-Tie-IxHash
|
||||
perl-Tie-Simple
|
||||
perl-Time-Duration
|
||||
perl-Time-Duration-Parse
|
||||
perl-Time-ParseDate
|
||||
perl-Time-Period
|
||||
perl-TimeDate
|
||||
perl-Tk-DoubleClick
|
||||
@@ -3035,11 +3159,12 @@ pyemd
|
||||
pyflakes
|
||||
pygobject
|
||||
pyinotify
|
||||
pykerberos
|
||||
pylama
|
||||
pyliblzma
|
||||
pylint
|
||||
pymemcache
|
||||
pymongo
|
||||
pynacl
|
||||
pypandoc
|
||||
pyparsing
|
||||
pyperclip
|
||||
@@ -3047,6 +3172,7 @@ pypowervm
|
||||
pyquery
|
||||
pyreadline
|
||||
pyrfc3339
|
||||
pyroma
|
||||
pyroute2
|
||||
pyrsistent
|
||||
pysaml2
|
||||
@@ -3056,6 +3182,7 @@ pysnmp
|
||||
pytest
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-randomly
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
pytest-runner
|
||||
@@ -3069,12 +3196,15 @@ python-barbicanclient
|
||||
python-ceilometerclient
|
||||
python-cinderclient
|
||||
python-dateutil
|
||||
python-dateutil-legacypython
|
||||
python-designateclient
|
||||
python-dldt
|
||||
python-editor
|
||||
python-future
|
||||
python-gflags
|
||||
python-glanceclient
|
||||
python-heatclient
|
||||
python-hwinfo
|
||||
python-kconfiglib
|
||||
python-keystoneclient
|
||||
python-krbV
|
||||
@@ -3106,7 +3236,9 @@ python-troveclient
|
||||
python-urwid
|
||||
python-zaqarclient
|
||||
python-zeep
|
||||
python2-mod_wsgi
|
||||
python3
|
||||
pytools
|
||||
pytz
|
||||
pyudev
|
||||
pywbem
|
||||
@@ -3160,6 +3292,8 @@ quagga
|
||||
quassel
|
||||
quilt
|
||||
rabbitmq-c
|
||||
rabbitmq-server
|
||||
radvd
|
||||
ragel
|
||||
raptor2
|
||||
rasqal
|
||||
@@ -3167,14 +3301,18 @@ rcssmin
|
||||
rdma-core
|
||||
re2c
|
||||
readline
|
||||
recommonmark
|
||||
redis
|
||||
redis-native
|
||||
redland
|
||||
redsocks
|
||||
reno
|
||||
reportlab
|
||||
repoze.lru
|
||||
repoze.sphinx.autointerface
|
||||
repoze.who
|
||||
requests
|
||||
requests-kerberos
|
||||
requests-mock
|
||||
requests-ntlm
|
||||
requests-toolbelt
|
||||
@@ -3230,6 +3368,7 @@ sed
|
||||
selenium
|
||||
semantic_version
|
||||
serf
|
||||
serpent
|
||||
setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
@@ -3241,6 +3380,7 @@ sg3_utils
|
||||
shadow
|
||||
shared-mime-info
|
||||
sharutils
|
||||
shell
|
||||
shim
|
||||
siege
|
||||
simg-tools
|
||||
@@ -3271,8 +3411,10 @@ spandsp
|
||||
spark-dep
|
||||
speex
|
||||
speexdsp
|
||||
sphinx-feature-classification
|
||||
sphinx_rtd_theme
|
||||
sphinxcontrib-apidoc
|
||||
sphinxcontrib-blockdiag
|
||||
sphinxcontrib-httpdomain
|
||||
sphinxcontrib-newsfeed
|
||||
sphinxcontrib-websupport
|
||||
@@ -3286,6 +3428,7 @@ sqlite-autoconf
|
||||
sqlparse
|
||||
squashfs-tools
|
||||
sshfs
|
||||
sshpass
|
||||
sssd
|
||||
stack
|
||||
startup-notification
|
||||
@@ -3358,6 +3501,7 @@ text-unidecode
|
||||
tflearn
|
||||
tgt
|
||||
thermal_daemon
|
||||
thermal_monitor
|
||||
thin-provisioning-tools
|
||||
threadweaver
|
||||
thrift
|
||||
@@ -3374,6 +3518,7 @@ tiptop
|
||||
tk
|
||||
tmux
|
||||
tokyocabinet
|
||||
toolz
|
||||
tooz
|
||||
tornado
|
||||
totem
|
||||
@@ -3420,6 +3565,7 @@ uwsgi
|
||||
v4l-utils
|
||||
vala
|
||||
valgrind
|
||||
varnish-cache
|
||||
vcstool
|
||||
vcversioner
|
||||
vim
|
||||
@@ -3436,10 +3582,10 @@ voluptuous
|
||||
voluptuous-serialize
|
||||
vsqlite
|
||||
vte
|
||||
vulkan-sdk
|
||||
waffle
|
||||
waitress
|
||||
warlock
|
||||
watchdogd
|
||||
wayland
|
||||
wayland-protocols
|
||||
wcwidth
|
||||
@@ -3454,11 +3600,13 @@ weston
|
||||
wget
|
||||
wheel
|
||||
which
|
||||
whois
|
||||
widgetsnbextension
|
||||
winpdb
|
||||
wireless-regdb-master
|
||||
wireshark
|
||||
woff2
|
||||
wok
|
||||
wol
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
@@ -3553,7 +3701,7 @@ yelp-tools
|
||||
yelp-xsl
|
||||
yum
|
||||
yum-metadata-parser
|
||||
yum-utils
|
||||
zVMCloudConnector
|
||||
zake
|
||||
zc.lockfile
|
||||
zenity
|
||||
|
||||
+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