mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
59 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 |
+29
-1
@@ -15,6 +15,7 @@ SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || rpmspec -D '_vendor clr' --srpm -q --
|
|||||||
SRPMFILE = results/$(SRPMVERS).src.rpm
|
SRPMFILE = results/$(SRPMVERS).src.rpm
|
||||||
|
|
||||||
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||||
|
DEBUGINFO_RPM = $(wildcard rpms/*-debuginfo-*.rpm)
|
||||||
RPMS ?= $(LATEST_RPMS)
|
RPMS ?= $(LATEST_RPMS)
|
||||||
|
|
||||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||||
@@ -154,13 +155,15 @@ pullrebase:
|
|||||||
fi \
|
fi \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
preautospec-checks:
|
||||||
|
|
||||||
#help autospec: automatically generates a specfile. If there is
|
#help autospec: automatically generates a specfile. If there is
|
||||||
#help already a specfile, it will be overwritten. Several files used by
|
#help already a specfile, it will be overwritten. Several files used by
|
||||||
#help autospec will be created in the process.
|
#help autospec will be created in the process.
|
||||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
||||||
#help to autospec.
|
#help to autospec.
|
||||||
#help For more information, see the project at https://github.com/clearlinux/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 \
|
@if [ -e $(SPECFILE) ] && ! grep -q "# Generated by: autospec.py" $(SPECFILE) ; then \
|
||||||
echo "Specfile already exists and was not created by autospec.py! Aborting."; \
|
echo "Specfile already exists and was not created by autospec.py! Aborting."; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
@@ -406,6 +409,31 @@ install:
|
|||||||
done
|
done
|
||||||
@$(MAKE) loop-down DEVICE=6
|
@$(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 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 by downloading the upstream source tarballs listed in the spec file and
|
||||||
#help calculating their hashes. Autospec performs this step automatically, so
|
#help calculating their hashes. Autospec performs this step automatically, so
|
||||||
|
|||||||
+3
-1
@@ -190,13 +190,15 @@ releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
|||||||
provides:
|
provides:
|
||||||
@$(TOPLVL)/projects/common/provides.sh -f $(FP) -r $(RN)
|
@$(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 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 with NAME=$(NAME). Several files used by autospec will be created in the
|
||||||
#help process.
|
#help process.
|
||||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
||||||
#help to autospec.
|
#help to autospec.
|
||||||
#help For more information about autospec, see the project page on Github https://github.com/clearlinux/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 \
|
@if [ -z $(NAME) ] || [ -z $(URL) ]; then \
|
||||||
echo "Please specify NAME and URL. The ARCHIVES variable is optional."; \
|
echo "Please specify NAME and URL. The ARCHIVES variable is optional."; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -7,6 +7,7 @@ ConfigArgParse
|
|||||||
Counter
|
Counter
|
||||||
Cython
|
Cython
|
||||||
Django
|
Django
|
||||||
|
Edge-optimized-models
|
||||||
Flask
|
Flask
|
||||||
Flask-RESTful
|
Flask-RESTful
|
||||||
FlatBuffers
|
FlatBuffers
|
||||||
@@ -24,6 +25,7 @@ LibRaw
|
|||||||
LibVNCServer
|
LibVNCServer
|
||||||
Linux-PAM
|
Linux-PAM
|
||||||
LuaJIT
|
LuaJIT
|
||||||
|
M2Crypto
|
||||||
Mako
|
Mako
|
||||||
Markdown
|
Markdown
|
||||||
MarkupSafe
|
MarkupSafe
|
||||||
@@ -40,6 +42,7 @@ Pint
|
|||||||
PyDispatcher
|
PyDispatcher
|
||||||
PyJWT
|
PyJWT
|
||||||
PyMySQL
|
PyMySQL
|
||||||
|
PyNaCl
|
||||||
PyWavelets
|
PyWavelets
|
||||||
PyYAML
|
PyYAML
|
||||||
Pygments
|
Pygments
|
||||||
@@ -89,6 +92,7 @@ R-GeneralizedHyperbolic
|
|||||||
R-GlobalOptions
|
R-GlobalOptions
|
||||||
R-Guerry
|
R-Guerry
|
||||||
R-Hmisc
|
R-Hmisc
|
||||||
|
R-ICEbox
|
||||||
R-ICS
|
R-ICS
|
||||||
R-ICSNP
|
R-ICSNP
|
||||||
R-IRdisplay
|
R-IRdisplay
|
||||||
@@ -229,6 +233,7 @@ R-circlize
|
|||||||
R-classInt
|
R-classInt
|
||||||
R-cli
|
R-cli
|
||||||
R-clipr
|
R-clipr
|
||||||
|
R-clisymbols
|
||||||
R-clue
|
R-clue
|
||||||
R-clustMixType
|
R-clustMixType
|
||||||
R-clusterGeneration
|
R-clusterGeneration
|
||||||
@@ -347,6 +352,7 @@ R-formatR
|
|||||||
R-fossil
|
R-fossil
|
||||||
R-fpc
|
R-fpc
|
||||||
R-fracdiff
|
R-fracdiff
|
||||||
|
R-fs
|
||||||
R-futile.logger
|
R-futile.logger
|
||||||
R-futile.options
|
R-futile.options
|
||||||
R-future
|
R-future
|
||||||
@@ -367,6 +373,7 @@ R-ggplot2
|
|||||||
R-ggplot2movies
|
R-ggplot2movies
|
||||||
R-ggridges
|
R-ggridges
|
||||||
R-ggvis
|
R-ggvis
|
||||||
|
R-gh
|
||||||
R-git2r
|
R-git2r
|
||||||
R-glmnet
|
R-glmnet
|
||||||
R-globals
|
R-globals
|
||||||
@@ -401,6 +408,7 @@ R-hypergeo
|
|||||||
R-ica
|
R-ica
|
||||||
R-igraph
|
R-igraph
|
||||||
R-import
|
R-import
|
||||||
|
R-ini
|
||||||
R-inline
|
R-inline
|
||||||
R-inum
|
R-inum
|
||||||
R-ipred
|
R-ipred
|
||||||
@@ -526,6 +534,7 @@ R-pcaPP
|
|||||||
R-pcse
|
R-pcse
|
||||||
R-pdfCluster
|
R-pdfCluster
|
||||||
R-pdftools
|
R-pdftools
|
||||||
|
R-pdp
|
||||||
R-permute
|
R-permute
|
||||||
R-phangorn
|
R-phangorn
|
||||||
R-pheatmap
|
R-pheatmap
|
||||||
@@ -652,6 +661,7 @@ R-sendmailR
|
|||||||
R-seqinr
|
R-seqinr
|
||||||
R-seriation
|
R-seriation
|
||||||
R-seroincidence
|
R-seroincidence
|
||||||
|
R-sessioninfo
|
||||||
R-setRNG
|
R-setRNG
|
||||||
R-sfsmisc
|
R-sfsmisc
|
||||||
R-sgeostat
|
R-sgeostat
|
||||||
@@ -730,6 +740,7 @@ R-ucminf
|
|||||||
R-urca
|
R-urca
|
||||||
R-urltools
|
R-urltools
|
||||||
R-uroot
|
R-uroot
|
||||||
|
R-usethis
|
||||||
R-utf8
|
R-utf8
|
||||||
R-uuid
|
R-uuid
|
||||||
R-varImp
|
R-varImp
|
||||||
@@ -782,6 +793,9 @@ Theano
|
|||||||
Thunar
|
Thunar
|
||||||
UkPostcodeParser
|
UkPostcodeParser
|
||||||
Vertex-theme
|
Vertex-theme
|
||||||
|
Vulkan-Headers
|
||||||
|
Vulkan-Loader
|
||||||
|
Vulkan-Tools
|
||||||
WALinuxAgent
|
WALinuxAgent
|
||||||
WSGIProxy2
|
WSGIProxy2
|
||||||
WSME
|
WSME
|
||||||
@@ -870,6 +884,7 @@ argparse
|
|||||||
ark
|
ark
|
||||||
artikulate
|
artikulate
|
||||||
asciidoc
|
asciidoc
|
||||||
|
asciinema
|
||||||
asio
|
asio
|
||||||
asn1crypto
|
asn1crypto
|
||||||
aspell
|
aspell
|
||||||
@@ -924,6 +939,7 @@ bashdb
|
|||||||
bats
|
bats
|
||||||
bazel
|
bazel
|
||||||
bc
|
bc
|
||||||
|
bcc
|
||||||
bcrypt
|
bcrypt
|
||||||
bdftopcf
|
bdftopcf
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
@@ -954,6 +970,7 @@ breeze
|
|||||||
breeze-gtk
|
breeze-gtk
|
||||||
breeze-icons
|
breeze-icons
|
||||||
bridge-utils
|
bridge-utils
|
||||||
|
bro
|
||||||
brotli
|
brotli
|
||||||
bsdiff
|
bsdiff
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
@@ -1009,6 +1026,7 @@ cgdb
|
|||||||
cgit
|
cgit
|
||||||
chardet
|
chardet
|
||||||
check
|
check
|
||||||
|
check-manifest
|
||||||
cheese
|
cheese
|
||||||
cheroot
|
cheroot
|
||||||
chrome-gnome-shell
|
chrome-gnome-shell
|
||||||
@@ -1038,6 +1056,7 @@ clr-find-bundle
|
|||||||
clr-fwupd-hooks
|
clr-fwupd-hooks
|
||||||
clr-hardware-files
|
clr-hardware-files
|
||||||
clr-init
|
clr-init
|
||||||
|
clr-installer
|
||||||
clr-man-pages
|
clr-man-pages
|
||||||
clr-power-tweaks
|
clr-power-tweaks
|
||||||
clr-python-timestamp
|
clr-python-timestamp
|
||||||
@@ -1089,6 +1108,7 @@ commonmark
|
|||||||
compat-SDL2-soname1
|
compat-SDL2-soname1
|
||||||
compat-cryptsetup-soname4
|
compat-cryptsetup-soname4
|
||||||
compat-efivar-soname0
|
compat-efivar-soname0
|
||||||
|
compat-enchant-soname1
|
||||||
compat-fuse-soname2
|
compat-fuse-soname2
|
||||||
compat-gegl
|
compat-gegl
|
||||||
compat-gegl-0.3
|
compat-gegl-0.3
|
||||||
@@ -1099,10 +1119,12 @@ compat-hdf5-soname10
|
|||||||
compat-hyperscan-soname4
|
compat-hyperscan-soname4
|
||||||
compat-ipset-soname10
|
compat-ipset-soname10
|
||||||
compat-libical-soname2
|
compat-libical-soname2
|
||||||
|
compat-libidn-soname11
|
||||||
compat-libpng-soname12
|
compat-libpng-soname12
|
||||||
compat-libwebp-soname6
|
compat-libwebp-soname6
|
||||||
compat-llvm-soname4
|
compat-llvm-soname4
|
||||||
compat-llvm-soname5
|
compat-llvm-soname5
|
||||||
|
compat-llvm-soname6
|
||||||
compat-mpfr-soname4
|
compat-mpfr-soname4
|
||||||
compat-opencv-soname32
|
compat-opencv-soname32
|
||||||
compat-opencv-soname33
|
compat-opencv-soname33
|
||||||
@@ -1126,8 +1148,10 @@ cov-core
|
|||||||
coverage
|
coverage
|
||||||
cpio
|
cpio
|
||||||
cppcheck
|
cppcheck
|
||||||
|
cpprestsdk
|
||||||
cppunit
|
cppunit
|
||||||
cpuid
|
cpuid
|
||||||
|
cpuloadgen
|
||||||
cracklib
|
cracklib
|
||||||
crcmod
|
crcmod
|
||||||
createrepo_c
|
createrepo_c
|
||||||
@@ -1152,6 +1176,7 @@ cyrus-sasl
|
|||||||
dapl
|
dapl
|
||||||
darktable
|
darktable
|
||||||
dask
|
dask
|
||||||
|
datefudge
|
||||||
db
|
db
|
||||||
dbus
|
dbus
|
||||||
dbus-broker
|
dbus-broker
|
||||||
@@ -1187,6 +1212,8 @@ django-discover-runner
|
|||||||
django-nose
|
django-nose
|
||||||
django-pyscss
|
django-pyscss
|
||||||
django_compressor
|
django_compressor
|
||||||
|
dldt
|
||||||
|
dlt-daemon
|
||||||
dmenu
|
dmenu
|
||||||
dmidecode
|
dmidecode
|
||||||
dnf
|
dnf
|
||||||
@@ -1210,6 +1237,7 @@ dosfstools
|
|||||||
double-conversion
|
double-conversion
|
||||||
dovecot
|
dovecot
|
||||||
doxygen
|
doxygen
|
||||||
|
dpcontracts
|
||||||
dpdk
|
dpdk
|
||||||
dracut
|
dracut
|
||||||
dragon
|
dragon
|
||||||
@@ -1232,8 +1260,11 @@ efivar
|
|||||||
eigen
|
eigen
|
||||||
elasticsearch
|
elasticsearch
|
||||||
elasticsearch-dep
|
elasticsearch-dep
|
||||||
|
electric-fence
|
||||||
elementary-xfce
|
elementary-xfce
|
||||||
elfutils
|
elfutils
|
||||||
|
elixir
|
||||||
|
ell
|
||||||
emacs
|
emacs
|
||||||
empy
|
empy
|
||||||
enchant
|
enchant
|
||||||
@@ -1287,6 +1318,7 @@ flake8-docstrings
|
|||||||
flake8-import-order
|
flake8-import-order
|
||||||
flake8-polyfill
|
flake8-polyfill
|
||||||
flatpak
|
flatpak
|
||||||
|
flatpak-builder
|
||||||
fldigi
|
fldigi
|
||||||
flex
|
flex
|
||||||
flmsg
|
flmsg
|
||||||
@@ -1298,6 +1330,8 @@ font-adobe-75dpi
|
|||||||
font-bitstream-type1
|
font-bitstream-type1
|
||||||
font-util
|
font-util
|
||||||
fontconfig
|
fontconfig
|
||||||
|
fontforge
|
||||||
|
fonttools
|
||||||
frameworkintegration
|
frameworkintegration
|
||||||
freeglut
|
freeglut
|
||||||
freeipmi
|
freeipmi
|
||||||
@@ -1482,6 +1516,7 @@ help2man
|
|||||||
hexchat
|
hexchat
|
||||||
hgtools
|
hgtools
|
||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
|
hold
|
||||||
home-assistant
|
home-assistant
|
||||||
horizon
|
horizon
|
||||||
hostname
|
hostname
|
||||||
@@ -1514,7 +1549,10 @@ icon-naming-utils
|
|||||||
icu4c
|
icu4c
|
||||||
idna
|
idna
|
||||||
idna-ssl
|
idna-ssl
|
||||||
|
ifaddr
|
||||||
iftop
|
iftop
|
||||||
|
ilmbase
|
||||||
|
image
|
||||||
imagesize
|
imagesize
|
||||||
imapfilter
|
imapfilter
|
||||||
imlib2
|
imlib2
|
||||||
@@ -1524,14 +1562,18 @@ influxdb
|
|||||||
iniparse
|
iniparse
|
||||||
init-rdahead
|
init-rdahead
|
||||||
inotify-tools
|
inotify-tools
|
||||||
|
intel-gmmlib
|
||||||
intel-gpu-tools
|
intel-gpu-tools
|
||||||
intel-hybrid-driver
|
intel-hybrid-driver
|
||||||
|
intel-media-driver
|
||||||
intltool
|
intltool
|
||||||
ioc-cbc-tools
|
ioc-cbc-tools
|
||||||
ioping
|
ioping
|
||||||
iotop
|
iotop
|
||||||
ipaddr
|
ipaddr
|
||||||
ipaddress
|
ipaddress
|
||||||
|
ipdb
|
||||||
|
ipdbplugin
|
||||||
iperf
|
iperf
|
||||||
ipmctl
|
ipmctl
|
||||||
ipmitool
|
ipmitool
|
||||||
@@ -1588,6 +1630,7 @@ jupyter_console
|
|||||||
jupyter_core
|
jupyter_core
|
||||||
jupyterlab
|
jupyterlab
|
||||||
jupyterlab_launcher
|
jupyterlab_launcher
|
||||||
|
jupyterlab_server
|
||||||
kactivities
|
kactivities
|
||||||
kactivities-stats
|
kactivities-stats
|
||||||
kactivitymanagerd
|
kactivitymanagerd
|
||||||
@@ -1700,6 +1743,7 @@ killbots
|
|||||||
kimageformats
|
kimageformats
|
||||||
kimagemapeditor
|
kimagemapeditor
|
||||||
kimap
|
kimap
|
||||||
|
kimchi
|
||||||
kinfocenter
|
kinfocenter
|
||||||
kinit
|
kinit
|
||||||
kio
|
kio
|
||||||
@@ -1760,6 +1804,7 @@ kqtquickcharts
|
|||||||
krb5
|
krb5
|
||||||
krdc
|
krdc
|
||||||
kreversi
|
kreversi
|
||||||
|
krita
|
||||||
kross
|
kross
|
||||||
kruler
|
kruler
|
||||||
krunner
|
krunner
|
||||||
@@ -1876,6 +1921,7 @@ libe-book
|
|||||||
libepoxy
|
libepoxy
|
||||||
libepubgen
|
libepubgen
|
||||||
liberasurecode
|
liberasurecode
|
||||||
|
liberation-fonts
|
||||||
libetonyek
|
libetonyek
|
||||||
libev
|
libev
|
||||||
libevdev
|
libevdev
|
||||||
@@ -1908,10 +1954,12 @@ libgusb
|
|||||||
libgweather
|
libgweather
|
||||||
libical
|
libical
|
||||||
libidn
|
libidn
|
||||||
|
libidn2
|
||||||
libindicator
|
libindicator
|
||||||
libinput
|
libinput
|
||||||
libiscsi
|
libiscsi
|
||||||
libisofs
|
libisofs
|
||||||
|
libite
|
||||||
libjpeg-turbo
|
libjpeg-turbo
|
||||||
libjpeg-turbo-soname8
|
libjpeg-turbo-soname8
|
||||||
libkcddb
|
libkcddb
|
||||||
@@ -1987,9 +2035,11 @@ libsigc++
|
|||||||
libsmbios
|
libsmbios
|
||||||
libsmi
|
libsmi
|
||||||
libsndfile
|
libsndfile
|
||||||
|
libsodium
|
||||||
libsolv
|
libsolv
|
||||||
libsoup
|
libsoup
|
||||||
libspectre
|
libspectre
|
||||||
|
libspiro
|
||||||
libsrtp
|
libsrtp
|
||||||
libssh
|
libssh
|
||||||
libssh2
|
libssh2
|
||||||
@@ -2001,6 +2051,8 @@ libtheora
|
|||||||
libtirpc
|
libtirpc
|
||||||
libtool
|
libtool
|
||||||
libudev0-shim
|
libudev0-shim
|
||||||
|
libuev
|
||||||
|
libuninameslist
|
||||||
libunistring
|
libunistring
|
||||||
libunwind
|
libunwind
|
||||||
libusb
|
libusb
|
||||||
@@ -2038,6 +2090,8 @@ libyami-utils
|
|||||||
libzip
|
libzip
|
||||||
libzmf
|
libzmf
|
||||||
libzmq
|
libzmq
|
||||||
|
lightdm
|
||||||
|
lightdm-gtk-greeter
|
||||||
linecache2
|
linecache2
|
||||||
links
|
links
|
||||||
linux
|
linux
|
||||||
@@ -2048,6 +2102,8 @@ linux-gce
|
|||||||
linux-hyperv
|
linux-hyperv
|
||||||
linux-hyperv-lts
|
linux-hyperv-lts
|
||||||
linux-hyperv-mini
|
linux-hyperv-mini
|
||||||
|
linux-iot-lts2017-preempt-rt
|
||||||
|
linux-iot-lts2018
|
||||||
linux-kata
|
linux-kata
|
||||||
linux-kvm
|
linux-kvm
|
||||||
linux-libc-headers
|
linux-libc-headers
|
||||||
@@ -2063,6 +2119,7 @@ lksctp-tools
|
|||||||
llvm
|
llvm
|
||||||
llvmlite
|
llvmlite
|
||||||
lmdb
|
lmdb
|
||||||
|
locket
|
||||||
logilab-common
|
logilab-common
|
||||||
logrotate
|
logrotate
|
||||||
logutils
|
logutils
|
||||||
@@ -2071,6 +2128,7 @@ lsacpi
|
|||||||
lshw
|
lshw
|
||||||
lskat
|
lskat
|
||||||
lsof
|
lsof
|
||||||
|
lsscsi
|
||||||
ltp
|
ltp
|
||||||
ltrace
|
ltrace
|
||||||
lua
|
lua
|
||||||
@@ -2096,6 +2154,7 @@ mcelog
|
|||||||
mdadm
|
mdadm
|
||||||
mdds
|
mdds
|
||||||
media-player-info
|
media-player-info
|
||||||
|
mediasdk
|
||||||
meld
|
meld
|
||||||
memcached
|
memcached
|
||||||
memkind
|
memkind
|
||||||
@@ -2120,6 +2179,7 @@ mistune
|
|||||||
mixer-tools
|
mixer-tools
|
||||||
mkfontdir
|
mkfontdir
|
||||||
mkfontscale
|
mkfontscale
|
||||||
|
mkl-dnn
|
||||||
mkosi
|
mkosi
|
||||||
mobile-broadband-provider-info
|
mobile-broadband-provider-info
|
||||||
mock
|
mock
|
||||||
@@ -2146,6 +2206,7 @@ mpfr
|
|||||||
mpg123
|
mpg123
|
||||||
mpi4py
|
mpi4py
|
||||||
mpmath
|
mpmath
|
||||||
|
mraa
|
||||||
msgpack
|
msgpack
|
||||||
msmtp
|
msmtp
|
||||||
msr-tools
|
msr-tools
|
||||||
@@ -2163,6 +2224,7 @@ mutt
|
|||||||
mutter
|
mutter
|
||||||
mypaint-brushes
|
mypaint-brushes
|
||||||
mypy
|
mypy
|
||||||
|
mypy_extensions
|
||||||
mythes
|
mythes
|
||||||
nagios-plugins
|
nagios-plugins
|
||||||
nano
|
nano
|
||||||
@@ -2216,8 +2278,10 @@ nrpe
|
|||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
nss-altfiles
|
nss-altfiles
|
||||||
|
nss-pam-ldapd
|
||||||
ntfs-3g
|
ntfs-3g
|
||||||
ntlm-auth
|
ntlm-auth
|
||||||
|
ntp
|
||||||
ntplib
|
ntplib
|
||||||
numactl
|
numactl
|
||||||
numatop
|
numatop
|
||||||
@@ -2232,11 +2296,13 @@ ocaml
|
|||||||
ocl-icd
|
ocl-icd
|
||||||
octave
|
octave
|
||||||
offlineimap
|
offlineimap
|
||||||
|
oiio
|
||||||
okular
|
okular
|
||||||
olefile
|
olefile
|
||||||
onig
|
onig
|
||||||
onnx
|
onnx
|
||||||
opa-psm2
|
opa-psm2
|
||||||
|
opcodes
|
||||||
open-iscsi
|
open-iscsi
|
||||||
open-isns
|
open-isns
|
||||||
open-lldp
|
open-lldp
|
||||||
@@ -2246,6 +2312,7 @@ openal-soft
|
|||||||
openblas
|
openblas
|
||||||
openconnect
|
openconnect
|
||||||
opencv
|
opencv
|
||||||
|
openexr
|
||||||
openjade
|
openjade
|
||||||
openjdk
|
openjdk
|
||||||
openjdk9
|
openjdk9
|
||||||
@@ -2307,6 +2374,9 @@ p11-kit
|
|||||||
p7zip
|
p7zip
|
||||||
packaging
|
packaging
|
||||||
pacrunner
|
pacrunner
|
||||||
|
paho-mqtt
|
||||||
|
paho.mqtt.c
|
||||||
|
paho.mqtt.cpp
|
||||||
palapeli
|
palapeli
|
||||||
pandas
|
pandas
|
||||||
pandoc
|
pandoc
|
||||||
@@ -2319,6 +2389,7 @@ paramiko
|
|||||||
parley
|
parley
|
||||||
parsedatetime
|
parsedatetime
|
||||||
parso
|
parso
|
||||||
|
partd
|
||||||
parted
|
parted
|
||||||
passlib
|
passlib
|
||||||
patch
|
patch
|
||||||
@@ -2420,6 +2491,7 @@ perl-Clone-PP
|
|||||||
perl-Compress-Bzip2
|
perl-Compress-Bzip2
|
||||||
perl-Compress-Raw-Lzma
|
perl-Compress-Raw-Lzma
|
||||||
perl-Config-Any
|
perl-Config-Any
|
||||||
|
perl-Config-General
|
||||||
perl-Config-Grammar
|
perl-Config-Grammar
|
||||||
perl-Config-IniFiles
|
perl-Config-IniFiles
|
||||||
perl-Config-Std
|
perl-Config-Std
|
||||||
@@ -2635,6 +2707,7 @@ perl-Image-Size
|
|||||||
perl-Import-Into
|
perl-Import-Into
|
||||||
perl-Importer
|
perl-Importer
|
||||||
perl-Inline
|
perl-Inline
|
||||||
|
perl-Inline-C
|
||||||
perl-JSON
|
perl-JSON
|
||||||
perl-JSON-MaybeXS
|
perl-JSON-MaybeXS
|
||||||
perl-JSON-RPC
|
perl-JSON-RPC
|
||||||
@@ -2730,6 +2803,7 @@ perl-Net-IDN-Encode
|
|||||||
perl-Net-INET6Glue
|
perl-Net-INET6Glue
|
||||||
perl-Net-Ident
|
perl-Net-Ident
|
||||||
perl-Net-MAC
|
perl-Net-MAC
|
||||||
|
perl-Net-MQTT
|
||||||
perl-Net-NTP
|
perl-Net-NTP
|
||||||
perl-Net-OpenID-Common
|
perl-Net-OpenID-Common
|
||||||
perl-Net-OpenID-Consumer
|
perl-Net-OpenID-Consumer
|
||||||
@@ -2787,8 +2861,6 @@ perl-Pod-Plainer
|
|||||||
perl-Pod-Spell
|
perl-Pod-Spell
|
||||||
perl-Pod-Strip
|
perl-Pod-Strip
|
||||||
perl-PostScript-File
|
perl-PostScript-File
|
||||||
perl-Proc-Daemon
|
|
||||||
perl-Proc-ProcessTable
|
|
||||||
perl-Proc-Wait3
|
perl-Proc-Wait3
|
||||||
perl-Protocol-OSC
|
perl-Protocol-OSC
|
||||||
perl-Quota
|
perl-Quota
|
||||||
@@ -2874,6 +2946,7 @@ perl-Test-Manifest
|
|||||||
perl-Test-MockModule
|
perl-Test-MockModule
|
||||||
perl-Test-MockTime
|
perl-Test-MockTime
|
||||||
perl-Test-More-UTF8
|
perl-Test-More-UTF8
|
||||||
|
perl-Test-Most
|
||||||
perl-Test-Needs
|
perl-Test-Needs
|
||||||
perl-Test-NoWarnings
|
perl-Test-NoWarnings
|
||||||
perl-Test-Number-Delta
|
perl-Test-Number-Delta
|
||||||
@@ -2890,6 +2963,7 @@ perl-Test-Strict
|
|||||||
perl-Test-Synopsis
|
perl-Test-Synopsis
|
||||||
perl-Test-TCP
|
perl-Test-TCP
|
||||||
perl-Test-Taint
|
perl-Test-Taint
|
||||||
|
perl-Test-Trap
|
||||||
perl-Test-UseAllModules
|
perl-Test-UseAllModules
|
||||||
perl-Test-Warn
|
perl-Test-Warn
|
||||||
perl-Test-Warnings
|
perl-Test-Warnings
|
||||||
@@ -3081,11 +3155,11 @@ pyflakes
|
|||||||
pygobject
|
pygobject
|
||||||
pyinotify
|
pyinotify
|
||||||
pykerberos
|
pykerberos
|
||||||
|
pylama
|
||||||
pyliblzma
|
pyliblzma
|
||||||
pylint
|
pylint
|
||||||
pymemcache
|
pymemcache
|
||||||
pymongo
|
pymongo
|
||||||
pynacl
|
|
||||||
pypandoc
|
pypandoc
|
||||||
pyparsing
|
pyparsing
|
||||||
pyperclip
|
pyperclip
|
||||||
@@ -3093,6 +3167,7 @@ pypowervm
|
|||||||
pyquery
|
pyquery
|
||||||
pyreadline
|
pyreadline
|
||||||
pyrfc3339
|
pyrfc3339
|
||||||
|
pyroma
|
||||||
pyroute2
|
pyroute2
|
||||||
pyrsistent
|
pyrsistent
|
||||||
pysaml2
|
pysaml2
|
||||||
@@ -3102,6 +3177,7 @@ pysnmp
|
|||||||
pytest
|
pytest
|
||||||
pytest-cov
|
pytest-cov
|
||||||
pytest-forked
|
pytest-forked
|
||||||
|
pytest-randomly
|
||||||
pytest-repeat
|
pytest-repeat
|
||||||
pytest-rerunfailures
|
pytest-rerunfailures
|
||||||
pytest-runner
|
pytest-runner
|
||||||
@@ -3115,12 +3191,15 @@ python-barbicanclient
|
|||||||
python-ceilometerclient
|
python-ceilometerclient
|
||||||
python-cinderclient
|
python-cinderclient
|
||||||
python-dateutil
|
python-dateutil
|
||||||
|
python-dateutil-legacypython
|
||||||
python-designateclient
|
python-designateclient
|
||||||
|
python-dldt
|
||||||
python-editor
|
python-editor
|
||||||
python-future
|
python-future
|
||||||
python-gflags
|
python-gflags
|
||||||
python-glanceclient
|
python-glanceclient
|
||||||
python-heatclient
|
python-heatclient
|
||||||
|
python-hwinfo
|
||||||
python-kconfiglib
|
python-kconfiglib
|
||||||
python-keystoneclient
|
python-keystoneclient
|
||||||
python-krbV
|
python-krbV
|
||||||
@@ -3152,7 +3231,9 @@ python-troveclient
|
|||||||
python-urwid
|
python-urwid
|
||||||
python-zaqarclient
|
python-zaqarclient
|
||||||
python-zeep
|
python-zeep
|
||||||
|
python2-mod_wsgi
|
||||||
python3
|
python3
|
||||||
|
pytools
|
||||||
pytz
|
pytz
|
||||||
pyudev
|
pyudev
|
||||||
pywbem
|
pywbem
|
||||||
@@ -3206,6 +3287,8 @@ quagga
|
|||||||
quassel
|
quassel
|
||||||
quilt
|
quilt
|
||||||
rabbitmq-c
|
rabbitmq-c
|
||||||
|
rabbitmq-server
|
||||||
|
radvd
|
||||||
ragel
|
ragel
|
||||||
raptor2
|
raptor2
|
||||||
rasqal
|
rasqal
|
||||||
@@ -3221,6 +3304,7 @@ redsocks
|
|||||||
reno
|
reno
|
||||||
reportlab
|
reportlab
|
||||||
repoze.lru
|
repoze.lru
|
||||||
|
repoze.sphinx.autointerface
|
||||||
repoze.who
|
repoze.who
|
||||||
requests
|
requests
|
||||||
requests-kerberos
|
requests-kerberos
|
||||||
@@ -3279,6 +3363,7 @@ sed
|
|||||||
selenium
|
selenium
|
||||||
semantic_version
|
semantic_version
|
||||||
serf
|
serf
|
||||||
|
serpent
|
||||||
setproctitle
|
setproctitle
|
||||||
setserial
|
setserial
|
||||||
setuptools
|
setuptools
|
||||||
@@ -3290,6 +3375,7 @@ sg3_utils
|
|||||||
shadow
|
shadow
|
||||||
shared-mime-info
|
shared-mime-info
|
||||||
sharutils
|
sharutils
|
||||||
|
shell
|
||||||
shim
|
shim
|
||||||
siege
|
siege
|
||||||
simg-tools
|
simg-tools
|
||||||
@@ -3410,6 +3496,7 @@ text-unidecode
|
|||||||
tflearn
|
tflearn
|
||||||
tgt
|
tgt
|
||||||
thermal_daemon
|
thermal_daemon
|
||||||
|
thermal_monitor
|
||||||
thin-provisioning-tools
|
thin-provisioning-tools
|
||||||
threadweaver
|
threadweaver
|
||||||
thrift
|
thrift
|
||||||
@@ -3426,6 +3513,7 @@ tiptop
|
|||||||
tk
|
tk
|
||||||
tmux
|
tmux
|
||||||
tokyocabinet
|
tokyocabinet
|
||||||
|
toolz
|
||||||
tooz
|
tooz
|
||||||
tornado
|
tornado
|
||||||
totem
|
totem
|
||||||
@@ -3489,10 +3577,10 @@ voluptuous
|
|||||||
voluptuous-serialize
|
voluptuous-serialize
|
||||||
vsqlite
|
vsqlite
|
||||||
vte
|
vte
|
||||||
vulkan-sdk
|
|
||||||
waffle
|
waffle
|
||||||
waitress
|
waitress
|
||||||
warlock
|
warlock
|
||||||
|
watchdogd
|
||||||
wayland
|
wayland
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
wcwidth
|
wcwidth
|
||||||
@@ -3507,11 +3595,13 @@ weston
|
|||||||
wget
|
wget
|
||||||
wheel
|
wheel
|
||||||
which
|
which
|
||||||
|
whois
|
||||||
widgetsnbextension
|
widgetsnbextension
|
||||||
winpdb
|
winpdb
|
||||||
wireless-regdb-master
|
wireless-regdb-master
|
||||||
wireshark
|
wireshark
|
||||||
woff2
|
woff2
|
||||||
|
wok
|
||||||
wol
|
wol
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
wrapt
|
wrapt
|
||||||
@@ -3606,7 +3696,6 @@ yelp-tools
|
|||||||
yelp-xsl
|
yelp-xsl
|
||||||
yum
|
yum
|
||||||
yum-metadata-parser
|
yum-metadata-parser
|
||||||
yum-utils
|
|
||||||
zVMCloudConnector
|
zVMCloudConnector
|
||||||
zake
|
zake
|
||||||
zc.lockfile
|
zc.lockfile
|
||||||
|
|||||||
+9
-1
@@ -43,11 +43,19 @@ if [ ! -f "$IMAGE" ]; then
|
|||||||
fi
|
fi
|
||||||
rm -f debug.log
|
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}
|
VMN=${VMN:=1}
|
||||||
|
|
||||||
qemu-system-x86_64 \
|
qemu-system-x86_64 \
|
||||||
-enable-kvm \
|
-enable-kvm \
|
||||||
-bios OVMF.fd \
|
${UEFI_BIOS} \
|
||||||
-smp sockets=1,cpus=4,cores=2 -cpu host \
|
-smp sockets=1,cpus=4,cores=2 -cpu host \
|
||||||
-m 1024 \
|
-m 1024 \
|
||||||
-vga none -nographic \
|
-vga none -nographic \
|
||||||
|
|||||||
+12
-3
@@ -6,6 +6,7 @@ SERVERCA=""
|
|||||||
CLIENTCA=""
|
CLIENTCA=""
|
||||||
WORKSPACE="clearlinux"
|
WORKSPACE="clearlinux"
|
||||||
PACKAGE_REPOS=
|
PACKAGE_REPOS=
|
||||||
|
NEEDS_KVM_GROUP=
|
||||||
|
|
||||||
help() {
|
help() {
|
||||||
printf "%s\n" >&2 "Usage: $SCRIPT [options]" \
|
printf "%s\n" >&2 "Usage: $SCRIPT [options]" \
|
||||||
@@ -115,6 +116,10 @@ required_progs() {
|
|||||||
|
|
||||||
required_progs
|
required_progs
|
||||||
|
|
||||||
|
if ! groups | grep -qw kvm; then
|
||||||
|
NEEDS_KVM_GROUP=1
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Initializing development workspace in \"$WORKSPACE\" . . ."
|
echo "Initializing development workspace in \"$WORKSPACE\" . . ."
|
||||||
|
|
||||||
mkdir "$WORKSPACE"
|
mkdir "$WORKSPACE"
|
||||||
@@ -146,8 +151,10 @@ if [ "$USE_KOJI" ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Adding user to kvm group . . ."
|
if [ -n "$NEEDS_KVM_GROUP" ]; then
|
||||||
sudo usermod -a -G kvm $USER
|
echo "Adding user to kvm group . . ."
|
||||||
|
sudo usermod -a -G kvm $USER
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Cloning special project repositories . . ."
|
echo "Cloning special project repositories . . ."
|
||||||
make ${JOBS_ARG} clone-projects
|
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 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\""
|
echo "NOTE: To clone a single package repo with NAME, run \"cd $WORKSPACE; make clone_NAME\""
|
||||||
fi
|
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
|
# vi: ft=sh sw=2 et sts=2
|
||||||
|
|||||||
Reference in New Issue
Block a user