mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| af2c0bea72 | |||
| b99b7e8c25 | |||
| 359d2a8379 | |||
| d828f3a3ce | |||
| 330876d190 | |||
| 3bf5f39687 | |||
| 71d9699bdd | |||
| ded920ccb3 | |||
| cc16065a09 | |||
| 45f2185a25 | |||
| 9ffc0b9640 | |||
| 98c5937801 | |||
| a50450212c | |||
| ab77a99a47 | |||
| 090bb77f92 | |||
| f2b7a30d12 | |||
| c26e27ce65 | |||
| 6fa010e10b | |||
| 173673b5c6 | |||
| eea34ccd7f | |||
| fa58b00fb7 | |||
| cd9b9c1319 | |||
| d22e4f985d | |||
| eb58950c17 | |||
| 8ff80b0be2 | |||
| 05634010e9 | |||
| f6442a0e7f | |||
| d6250a68cd | |||
| a0208a0509 | |||
| 7ff122463b | |||
| 08498361a4 | |||
| 1b8c8d250d | |||
| 4eccb104d5 | |||
| 4ac2b829d3 | |||
| 052fa48e83 | |||
| 382ed28176 | |||
| e695db8c80 |
+23
-10
@@ -119,17 +119,25 @@ $(SRPMFILE): $(SPECFILE) $(__allsources) localreponotice
|
||||
@$(MAKE) spdxcheck
|
||||
$(MOCK) --buildsrpm --source=./ --spec=$(SPECFILE) --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
||||
|
||||
# Do a git fetch and a git rebase rather than a git pull so aborting
|
||||
# the git pull at a password prompt doesn't leave local changes stashed
|
||||
# Do the the git status dance so we only apply a stash we create
|
||||
# Do a git fetch and a git rebase to apply local commits on top of latest
|
||||
# commits from the remote. A git fetch/rebase is used rather than a git pull so
|
||||
# aborting the git pull at a password prompt doesn't leave local changes
|
||||
# stashed. Do the git status dance so we only apply a stash we create. Note
|
||||
# that a fetch/rebase is not attempted if the remote 'origin' is not
|
||||
# initialized locally, or if the remote contains no commits.
|
||||
pullrebase:
|
||||
if [ -z "$$SKIP_GIT" ] && [ -e .git ]; then \
|
||||
set -x ; \
|
||||
@if [ -z "$$SKIP_GIT" ] && [ -e .git ]; then \
|
||||
if ! git rev-parse --verify --quiet origin/master > /dev/null; then \
|
||||
echo "Remote not yet initialized. Continuing."; \
|
||||
exit 0; \
|
||||
fi; \
|
||||
echo "Fetching origin"; \
|
||||
git fetch; \
|
||||
if ! git rev-parse --verify --quiet FETCH_HEAD > /dev/null; then \
|
||||
echo "No commits exist in remote. Continuing."; \
|
||||
exit 0; \
|
||||
fi; \
|
||||
echo "Rebasing to origin/master"; \
|
||||
if git status --porcelain | grep -q '^.[^?]'; \
|
||||
then \
|
||||
git stash save; \
|
||||
@@ -151,11 +159,16 @@ autospec: pullrebase localreponotice
|
||||
exit 1; \
|
||||
fi
|
||||
@printf 'PKG_NAME := %s\nURL = %s\nARCHIVES = %s\n\ninclude ../common/Makefile.common\n' $(PKG_NAME) '$(firstword $(value NEWURL) $(value URL))' '$(value ARCHIVES)' > Makefile
|
||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py -t . --integrity \
|
||||
${NON_INTERACTIVE} --config "$(AUTOSPEC_CONF)" ${SKIP_GIT} \
|
||||
$(firstword $(NEWURL) $(URL)) --name $(PKG_NAME) ${CLEANUP} \
|
||||
$${SETVERSION:+ -v $${SETVERSION}} -a $(ARCHIVES) \
|
||||
-m $(MOCK_CONFIG_VAL)
|
||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py \
|
||||
--target . \
|
||||
--integrity \
|
||||
--config "$(AUTOSPEC_CONF)" \
|
||||
--name $(PKG_NAME) \
|
||||
--archives $(ARCHIVES) \
|
||||
--mock-config $(MOCK_CONFIG_VAL) \
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||
$(firstword $(NEWURL) $(URL));
|
||||
@$(MAKE) spdxcheck
|
||||
@$(MAKE) checkblacklist
|
||||
@if [ -e update_changelog.sh ] && [ -z "$$SKIP_GIT" ] ; then \
|
||||
|
||||
+15
-2
@@ -80,7 +80,11 @@ ${PULL_PKGS}:
|
||||
fi ; \
|
||||
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit $$O..$$N; echo; \
|
||||
fi ; \
|
||||
$(call gitoliteurl,$$p); \
|
||||
if [ "$$p" = "projects/autospec" ] ; then \
|
||||
git remote set-url --push origin https://github.com/clearlinux/autospec.git; \
|
||||
else \
|
||||
$(call gitoliteurl,$$p); \
|
||||
fi ; \
|
||||
else \
|
||||
echo "$$p: no such remote 'origin'"; \
|
||||
fi ; \
|
||||
@@ -204,7 +208,16 @@ autospecnew: localreponotice
|
||||
$(call subjectprefix,$(NAME)); \
|
||||
); \
|
||||
printf 'PKG_NAME := %s\nURL = %s\nARCHIVES = %s\n\ninclude ../common/Makefile.common\n' $(NAME) '$(value URL)' '$(value ARCHIVES)' > $(TOPLVL)/packages/$(NAME)/Makefile; \
|
||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py --integrity -t packages/$(NAME) --config $(AUTOSPEC_CONF) $(URL) --name $(NAME) -m $(MOCK_CONFIG_VAL); \
|
||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py \
|
||||
--target packages/$(NAME) \
|
||||
--integrity \
|
||||
--config "$(AUTOSPEC_CONF)" \
|
||||
--name $(NAME) \
|
||||
--archives $(ARCHIVES) \
|
||||
--mock-config $(MOCK_CONFIG_VAL) \
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||
$(URL); \
|
||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||
else \
|
||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||
|
||||
@@ -31,124 +31,477 @@ Pygments
|
||||
QtAwesome
|
||||
QtPy
|
||||
R
|
||||
R-AER
|
||||
R-BH
|
||||
R-Brobdingnag
|
||||
R-CVST
|
||||
R-Cairo
|
||||
R-CircStats
|
||||
R-ClustVarLV
|
||||
R-Cubist
|
||||
R-DAAG
|
||||
R-DBI
|
||||
R-DBItest
|
||||
R-DEoptim
|
||||
R-DEoptimR
|
||||
R-DRR
|
||||
R-DT
|
||||
R-DendSer
|
||||
R-DistributionUtils
|
||||
R-Ecdat
|
||||
R-Ecfun
|
||||
R-EnvStats
|
||||
R-FNN
|
||||
R-Formula
|
||||
R-GGally
|
||||
R-GPArotation
|
||||
R-GeneralizedHyperbolic
|
||||
R-GlobalOptions
|
||||
R-Hmisc
|
||||
R-ICS
|
||||
R-ICSNP
|
||||
R-IRdisplay
|
||||
R-IRkernel
|
||||
R-ISwR
|
||||
R-Iso
|
||||
R-Lahman
|
||||
R-LearnBayes
|
||||
R-MCMCpack
|
||||
R-Matching
|
||||
R-MatrixModels
|
||||
R-ModelMetrics
|
||||
R-NADA
|
||||
R-NLP
|
||||
R-NMF
|
||||
R-NMOF
|
||||
R-PKI
|
||||
R-R.methodsS3
|
||||
R-R.oo
|
||||
R-R.utils
|
||||
R-R2Cuba
|
||||
R-R2HTML
|
||||
R-R6
|
||||
R-RANN
|
||||
R-RColorBrewer
|
||||
R-RCurl
|
||||
R-RJSONIO
|
||||
R-ROCR
|
||||
R-RSQLite
|
||||
R-RSclient
|
||||
R-RUnit
|
||||
R-RandomFields
|
||||
R-RandomFieldsUtils
|
||||
R-Rcpp
|
||||
R-RcppArmadillo
|
||||
R-RcppEigen
|
||||
R-RcppProgress
|
||||
R-RcppRoll
|
||||
R-Rmpfr
|
||||
R-Rmpi
|
||||
R-Rtsne
|
||||
R-SDMTools
|
||||
R-SQUAREM
|
||||
R-Sleuth2
|
||||
R-SnowballC
|
||||
R-SparseM
|
||||
R-StanHeaders
|
||||
R-SuppDists
|
||||
R-TH.data
|
||||
R-TRAMPR
|
||||
R-TSP
|
||||
R-TTR
|
||||
R-TeachingDemos
|
||||
R-VGAM
|
||||
R-VGAMdata
|
||||
R-VIM
|
||||
R-XML
|
||||
R-abind
|
||||
R-acepack
|
||||
R-actuar
|
||||
R-ade4
|
||||
R-analogue
|
||||
R-ape
|
||||
R-argparse
|
||||
R-arm
|
||||
R-assertthat
|
||||
R-backports
|
||||
R-base64enc
|
||||
R-bayesm
|
||||
R-bayesplot
|
||||
R-bdsmatrix
|
||||
R-betareg
|
||||
R-bibtex
|
||||
R-biglm
|
||||
R-bindr
|
||||
R-bindrcpp
|
||||
R-bipartite
|
||||
R-bit
|
||||
R-bit64
|
||||
R-bitops
|
||||
R-blob
|
||||
R-brew
|
||||
R-brglm
|
||||
R-bridgesampling
|
||||
R-brms
|
||||
R-broom
|
||||
R-caTools
|
||||
R-callr
|
||||
R-car
|
||||
R-carData
|
||||
R-caret
|
||||
R-cclust
|
||||
R-cellranger
|
||||
R-checkmate
|
||||
R-chron
|
||||
R-circlize
|
||||
R-classInt
|
||||
R-cli
|
||||
R-clue
|
||||
R-clustMixType
|
||||
R-coda
|
||||
R-coin
|
||||
R-colorspace
|
||||
R-colourpicker
|
||||
R-combinat
|
||||
R-commonmark
|
||||
R-compositions
|
||||
R-corpcor
|
||||
R-corrplot
|
||||
R-cowplot
|
||||
R-crayon
|
||||
R-crosstalk
|
||||
R-curl
|
||||
R-cvTools
|
||||
R-data.table
|
||||
R-dbarts
|
||||
R-dbplyr
|
||||
R-ddalpha
|
||||
R-deSolve
|
||||
R-debugme
|
||||
R-deepnet
|
||||
R-deldir
|
||||
R-dendextend
|
||||
R-desc
|
||||
R-devtools
|
||||
R-dfoptim
|
||||
R-dichromat
|
||||
R-diffusionMap
|
||||
R-digest
|
||||
R-dimRed
|
||||
R-diptest
|
||||
R-dlm
|
||||
R-doMC
|
||||
R-doMPI
|
||||
R-doParallel
|
||||
R-doRNG
|
||||
R-doSNOW
|
||||
R-dotCall64
|
||||
R-dplyr
|
||||
R-drc
|
||||
R-dtw
|
||||
R-dygraphs
|
||||
R-dynlm
|
||||
R-e1071
|
||||
R-earth
|
||||
R-ellipse
|
||||
R-energy
|
||||
R-estimability
|
||||
R-evaluate
|
||||
R-expint
|
||||
R-expm
|
||||
R-fastICA
|
||||
R-fastcluster
|
||||
R-fastmatch
|
||||
R-fda
|
||||
R-ff
|
||||
R-fields
|
||||
R-findpython
|
||||
R-fitdistrplus
|
||||
R-flashClust
|
||||
R-flexmix
|
||||
R-forcats
|
||||
R-foreach
|
||||
R-formatR
|
||||
R-fpc
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-gam
|
||||
R-gamm4
|
||||
R-gbm
|
||||
R-gclus
|
||||
R-gdata
|
||||
R-geepack
|
||||
R-geometry
|
||||
R-getopt
|
||||
R-ggjoy
|
||||
R-ggplot2
|
||||
R-ggplot2movies
|
||||
R-ggridges
|
||||
R-git2r
|
||||
R-glmnet
|
||||
R-glue
|
||||
R-gmodels
|
||||
R-gmp
|
||||
R-goftest
|
||||
R-gower
|
||||
R-gplots
|
||||
R-gridBase
|
||||
R-gridExtra
|
||||
R-gtable
|
||||
R-gtools
|
||||
R-haven
|
||||
R-hexbin
|
||||
R-highr
|
||||
R-hms
|
||||
R-htmlTable
|
||||
R-htmltools
|
||||
R-htmlwidgets
|
||||
R-httpuv
|
||||
R-httr
|
||||
R-hunspell
|
||||
R-ica
|
||||
R-igraph
|
||||
R-import
|
||||
R-inline
|
||||
R-inum
|
||||
R-ipred
|
||||
R-irlba
|
||||
R-iterators
|
||||
R-jpeg
|
||||
R-jsonlite
|
||||
R-kernlab
|
||||
R-klaR
|
||||
R-knitr
|
||||
R-labeling
|
||||
R-labelled
|
||||
R-laeken
|
||||
R-lambda.r
|
||||
R-lars
|
||||
R-latticeExtra
|
||||
R-lava
|
||||
R-lazyeval
|
||||
R-lda
|
||||
R-leaflet
|
||||
R-leaps
|
||||
R-lfe
|
||||
R-libcoin
|
||||
R-lle
|
||||
R-lme4
|
||||
R-lmtest
|
||||
R-locfit
|
||||
R-loo
|
||||
R-lpSolve
|
||||
R-lsmeans
|
||||
R-lubridate
|
||||
R-magic
|
||||
R-magrittr
|
||||
R-manipulate
|
||||
R-manipulateWidget
|
||||
R-mapproj
|
||||
R-maps
|
||||
R-maptools
|
||||
R-markdown
|
||||
R-matrixStats
|
||||
R-matrixcalc
|
||||
R-maxLik
|
||||
R-mclust
|
||||
R-mcmc
|
||||
R-mda
|
||||
R-memisc
|
||||
R-memoise
|
||||
R-mi
|
||||
R-microbenchmark
|
||||
R-mime
|
||||
R-miniUI
|
||||
R-minpack.lm
|
||||
R-minqa
|
||||
R-miscTools
|
||||
R-mixtools
|
||||
R-mlbench
|
||||
R-mnormt
|
||||
R-mockery
|
||||
R-modelr
|
||||
R-modeltools
|
||||
R-mondate
|
||||
R-multcomp
|
||||
R-multcompView
|
||||
R-multiwayvcov
|
||||
R-munsell
|
||||
R-mvoutlier
|
||||
R-mvtnorm
|
||||
R-network
|
||||
R-neuralnet
|
||||
R-nleqslv
|
||||
R-nloptr
|
||||
R-nortest
|
||||
R-numDeriv
|
||||
R-nycflights13
|
||||
R-openssl
|
||||
R-openxlsx
|
||||
R-optparse
|
||||
R-packrat
|
||||
R-pamr
|
||||
R-party
|
||||
R-partykit
|
||||
R-pbapply
|
||||
R-pbdZMQ
|
||||
R-pbkrtest
|
||||
R-pcaPP
|
||||
R-pdfCluster
|
||||
R-permute
|
||||
R-phylogram
|
||||
R-pillar
|
||||
R-pkgconfig
|
||||
R-pkgmaker
|
||||
R-plm
|
||||
R-plogr
|
||||
R-plotly
|
||||
R-plotmo
|
||||
R-plotrix
|
||||
R-pls
|
||||
R-plyr
|
||||
R-pmml
|
||||
R-png
|
||||
R-polspline
|
||||
R-polyclip
|
||||
R-polycor
|
||||
R-prabclus
|
||||
R-pracma
|
||||
R-praise
|
||||
R-prettyunits
|
||||
R-princurve
|
||||
R-processx
|
||||
R-prodlim
|
||||
R-profileModel
|
||||
R-progress
|
||||
R-proto
|
||||
R-proxy
|
||||
R-pryr
|
||||
R-psych
|
||||
R-purrr
|
||||
R-pxweb
|
||||
R-qap
|
||||
R-quadprog
|
||||
R-quantmod
|
||||
R-quantreg
|
||||
R-questionr
|
||||
R-randomForest
|
||||
R-ranger
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-readr
|
||||
R-readxl
|
||||
R-recipes
|
||||
R-registry
|
||||
R-rematch
|
||||
R-repr
|
||||
R-reprex
|
||||
R-reshape
|
||||
R-reshape2
|
||||
R-reticulate
|
||||
R-rgenoud
|
||||
R-rgl
|
||||
R-rio
|
||||
R-rlang
|
||||
R-rmarkdown
|
||||
R-rms
|
||||
R-rngtools
|
||||
R-robCompositions
|
||||
R-robustbase
|
||||
R-rootSolve
|
||||
R-roxygen2
|
||||
R-rprojroot
|
||||
R-rrcov
|
||||
R-rsconnect
|
||||
R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstudioapi
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-sROC
|
||||
R-sampling
|
||||
R-sandwich
|
||||
R-scales
|
||||
R-scatterplot3d
|
||||
R-segmented
|
||||
R-selectr
|
||||
R-sem
|
||||
R-seriation
|
||||
R-setRNG
|
||||
R-sfsmisc
|
||||
R-sgeostat
|
||||
R-shape
|
||||
R-shiny
|
||||
R-shinyjs
|
||||
R-shinystan
|
||||
R-shinythemes
|
||||
R-slam
|
||||
R-sm
|
||||
R-smoother
|
||||
R-sn
|
||||
R-sna
|
||||
R-snow
|
||||
R-snowfall
|
||||
R-som
|
||||
R-sourcetools
|
||||
R-sp
|
||||
R-spData
|
||||
R-spam
|
||||
R-spatstat
|
||||
R-spatstat.data
|
||||
R-spatstat.utils
|
||||
R-spdep
|
||||
R-speedglm
|
||||
R-spelling
|
||||
R-spls
|
||||
R-statmod
|
||||
R-statnet.common
|
||||
R-stringi
|
||||
R-stringr
|
||||
R-strucchange
|
||||
R-subselect
|
||||
R-superpc
|
||||
R-survey
|
||||
R-systemfit
|
||||
R-tau
|
||||
R-tclust
|
||||
R-tensor
|
||||
R-tensorA
|
||||
R-testit
|
||||
R-testthat
|
||||
R-threejs
|
||||
R-tibble
|
||||
R-tidyr
|
||||
R-tidyselect
|
||||
R-tidyverse
|
||||
R-timeDate
|
||||
R-tis
|
||||
R-tm
|
||||
R-topicmodels
|
||||
R-treatSens
|
||||
R-tree
|
||||
R-trimcluster
|
||||
R-truncnorm
|
||||
R-tseries
|
||||
R-tsne
|
||||
R-utf8
|
||||
R-uuid
|
||||
R-vcd
|
||||
R-vegan
|
||||
R-viridis
|
||||
R-viridisLite
|
||||
R-visNetwork
|
||||
R-webshot
|
||||
R-whisker
|
||||
R-withr
|
||||
R-xml2
|
||||
R-xtable
|
||||
R-xts
|
||||
R-yaml
|
||||
R-zCompositions
|
||||
R-zoo
|
||||
Remmina
|
||||
SDL
|
||||
SDL2
|
||||
SDL2_gfx
|
||||
@@ -176,6 +529,7 @@ WebOb
|
||||
WebTest
|
||||
Werkzeug
|
||||
Whoosh
|
||||
Z3
|
||||
abireport
|
||||
absl-py
|
||||
accountsservice
|
||||
@@ -210,7 +564,9 @@ asio
|
||||
asn1crypto
|
||||
aspell
|
||||
aspell-en
|
||||
astor
|
||||
astroid
|
||||
astunparse
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
@@ -225,6 +581,7 @@ augeas
|
||||
authconfig
|
||||
autoconf
|
||||
autoconf-archive
|
||||
autoconf213
|
||||
autofs
|
||||
autogen
|
||||
automake
|
||||
@@ -232,6 +589,7 @@ awscli
|
||||
azure-configs
|
||||
babeltrace
|
||||
babl
|
||||
backcall
|
||||
backports.functools_lru_cache
|
||||
backports.ssl_match_hostname
|
||||
backports.weakref
|
||||
@@ -263,6 +621,7 @@ boto
|
||||
boto3
|
||||
botocore
|
||||
bridge-utils
|
||||
brotli
|
||||
bsdiff
|
||||
btrfs-progs
|
||||
bundle-chroot-builder
|
||||
@@ -277,6 +636,7 @@ cached-property
|
||||
cairo
|
||||
cairomm
|
||||
cantarell-fonts
|
||||
capnproto
|
||||
cargo
|
||||
caribou
|
||||
catch2
|
||||
@@ -323,6 +683,7 @@ clr-systemd-config
|
||||
clr-update-triggers
|
||||
clr-wallpapers
|
||||
clrtrust
|
||||
clucene-core
|
||||
clutter
|
||||
clutter-gst
|
||||
clutter-gtk
|
||||
@@ -342,14 +703,18 @@ compat-efivar-soname0
|
||||
compat-fuse-soname2
|
||||
compat-gegl
|
||||
compat-glew-soname1
|
||||
compat-gtksourceview-soname3
|
||||
compat-guile-soname20
|
||||
compat-ipset-soname10
|
||||
compat-libical-soname2
|
||||
compat-libpng-soname12
|
||||
compat-libwebp-soname6
|
||||
compat-llvm-soname4
|
||||
compat-llvm-soname5
|
||||
compat-mpfr-soname4
|
||||
compat-opencv-soname32
|
||||
compat-opencv-soname33
|
||||
compat-protobuf-soname14
|
||||
compat-readline
|
||||
component
|
||||
compositeproto
|
||||
@@ -372,6 +737,7 @@ cpuid
|
||||
cracklib
|
||||
crcmod
|
||||
createrepo_c
|
||||
cri-containerd
|
||||
cri-o
|
||||
cri-tools
|
||||
cryptography
|
||||
@@ -400,6 +766,7 @@ defusedxml
|
||||
dejagnu
|
||||
desktop-file-utils
|
||||
dfc
|
||||
dfu-util
|
||||
dhcp
|
||||
dialog
|
||||
diffoscope
|
||||
@@ -416,6 +783,7 @@ docbook-utils
|
||||
docbook-xml
|
||||
docker
|
||||
docker-py
|
||||
dockerpy-creds
|
||||
docutils
|
||||
dogtail
|
||||
dos2unix
|
||||
@@ -427,6 +795,7 @@ dracut
|
||||
dri2proto
|
||||
dri3proto
|
||||
dstat
|
||||
dtc
|
||||
e2fsprogs
|
||||
ebtables
|
||||
ecdsa
|
||||
@@ -499,6 +868,7 @@ functools32
|
||||
fuse
|
||||
futures
|
||||
garcon
|
||||
gast
|
||||
gawk
|
||||
gc
|
||||
gcab
|
||||
@@ -606,6 +976,7 @@ grig
|
||||
grilo
|
||||
grilo-plugins
|
||||
groff
|
||||
grpcio
|
||||
grub
|
||||
gsettings-desktop-schemas
|
||||
gsl
|
||||
@@ -649,8 +1020,10 @@ httpd
|
||||
httplib2
|
||||
httpretty
|
||||
hub
|
||||
hugo
|
||||
hunspell
|
||||
hwloc
|
||||
hyperscan
|
||||
hyperstart
|
||||
hypothesis
|
||||
i2c-tools
|
||||
@@ -662,6 +1035,7 @@ icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
imagesize
|
||||
imapfilter
|
||||
indent
|
||||
infiniband-diags
|
||||
iniparse
|
||||
@@ -699,11 +1073,13 @@ ister
|
||||
itstool
|
||||
iw
|
||||
ixpdimm_sw
|
||||
jansson
|
||||
jedi
|
||||
jedi-vim
|
||||
jemalloc
|
||||
jmespath
|
||||
joe
|
||||
josepy
|
||||
jq
|
||||
json-c
|
||||
json-glib
|
||||
@@ -715,6 +1091,8 @@ jupyter-notebook-gist
|
||||
jupyter_client
|
||||
jupyter_console
|
||||
jupyter_core
|
||||
jupyterlab
|
||||
jupyterlab_launcher
|
||||
kafka-dep
|
||||
kbd
|
||||
kbproto
|
||||
@@ -722,6 +1100,7 @@ kexec-tools
|
||||
keyring
|
||||
keyutils
|
||||
khal
|
||||
kiwisolver
|
||||
kmod
|
||||
koji
|
||||
krb5
|
||||
@@ -782,6 +1161,7 @@ libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libdatrie
|
||||
libdazzle
|
||||
libdmx
|
||||
libdnf
|
||||
libdrm
|
||||
@@ -843,7 +1223,9 @@ libpthread-stubs
|
||||
libpwquality
|
||||
librepo
|
||||
librsvg
|
||||
librtlsdr
|
||||
libsamplerate
|
||||
libsass
|
||||
libseccomp
|
||||
libsecret
|
||||
libsigc++
|
||||
@@ -851,6 +1233,7 @@ libsndfile
|
||||
libsolv
|
||||
libsoup
|
||||
libspectre
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
libstoragemgmt
|
||||
@@ -901,9 +1284,11 @@ linux-hyperv-mini
|
||||
linux-kvm
|
||||
linux-libc-headers
|
||||
linux-lts
|
||||
linux-oracle
|
||||
linux-pk414
|
||||
linux-steam-integration
|
||||
linux-tools
|
||||
linuxptp
|
||||
llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
@@ -921,6 +1306,7 @@ lzip
|
||||
lzo
|
||||
m4
|
||||
make
|
||||
makedepend
|
||||
man-db
|
||||
man-pages
|
||||
mariadb
|
||||
@@ -955,6 +1341,7 @@ motd-update
|
||||
motif
|
||||
mozjs
|
||||
mozjs38
|
||||
mozjs52
|
||||
mpc
|
||||
mpfr
|
||||
mpg123
|
||||
@@ -978,7 +1365,6 @@ nbconvert
|
||||
nbformat
|
||||
nbsphinx
|
||||
ncurses
|
||||
ncurses-compat
|
||||
ndctl
|
||||
ndg_httpsclient
|
||||
neofetch
|
||||
@@ -1019,7 +1405,6 @@ numba
|
||||
numpy
|
||||
numpydoc
|
||||
nvme-cli
|
||||
nvml
|
||||
oauth2client
|
||||
ocl-icd
|
||||
offlineimap
|
||||
@@ -1047,6 +1432,7 @@ openvswitch
|
||||
opus
|
||||
opusfile
|
||||
orc
|
||||
orca
|
||||
ordereddict
|
||||
ostree
|
||||
ovirt-guest-agent
|
||||
@@ -1082,7 +1468,9 @@ perl-B-Hooks-EndOfScope
|
||||
perl-CPAN-Meta-Check
|
||||
perl-Capture-Tiny
|
||||
perl-Class-Data-Inheritable
|
||||
perl-Class-Inspector
|
||||
perl-Class-Singleton
|
||||
perl-Class-Tiny
|
||||
perl-Crypt-SSLeay
|
||||
perl-DBI
|
||||
perl-DateTime
|
||||
@@ -1098,7 +1486,13 @@ perl-Error
|
||||
perl-Eval-Closure
|
||||
perl-Exception-Class
|
||||
perl-Exporter-Tiny
|
||||
perl-ExtUtils-Config
|
||||
perl-ExtUtils-Helpers
|
||||
perl-ExtUtils-InstallPaths
|
||||
perl-File-Copy-Recursive
|
||||
perl-File-Listing
|
||||
perl-File-ShareDir
|
||||
perl-File-ShareDir-Install
|
||||
perl-File-Slurp
|
||||
perl-HTML-Parser
|
||||
perl-HTML-Tagset
|
||||
@@ -1123,6 +1517,7 @@ perl-MIME-Base64
|
||||
perl-MRO-Compat
|
||||
perl-Math-BigInt-GMP
|
||||
perl-Module-Build
|
||||
perl-Module-Build-Tiny
|
||||
perl-Module-Implementation
|
||||
perl-Module-Install
|
||||
perl-Module-Pluggable
|
||||
@@ -1135,6 +1530,7 @@ perl-Package-Stash
|
||||
perl-Params-Validate
|
||||
perl-Params-ValidationCompiler
|
||||
perl-Path-Class
|
||||
perl-Path-Tiny
|
||||
perl-Role-Tiny
|
||||
perl-Scope-Guard
|
||||
perl-Specio
|
||||
@@ -1142,10 +1538,14 @@ perl-Sub-Exporter-Progressive
|
||||
perl-Sub-Identify
|
||||
perl-Sub-Info
|
||||
perl-Sub-Quote
|
||||
perl-Sub-Uplevel
|
||||
perl-TAP-Harness-Archive
|
||||
perl-Term-Table
|
||||
perl-Test-Deep
|
||||
perl-Test-Exception
|
||||
perl-Test-Fatal
|
||||
perl-Test-File
|
||||
perl-Test-File-ShareDir-Dist
|
||||
perl-Test-Needs
|
||||
perl-Test-NoWarnings
|
||||
perl-Test-Output
|
||||
@@ -1153,7 +1553,9 @@ perl-Test-Pod
|
||||
perl-Test-Requires
|
||||
perl-Test-Simple
|
||||
perl-Test-Taint
|
||||
perl-Test-Warn
|
||||
perl-Test-Warnings
|
||||
perl-Test-utf8
|
||||
perl-Test2-Suite
|
||||
perl-Text-Autoformat
|
||||
perl-Text-CSV_XS
|
||||
@@ -1188,6 +1590,7 @@ pkcs11-helper
|
||||
pkg-config
|
||||
pluggy
|
||||
ply
|
||||
pmdk
|
||||
polkit
|
||||
poppler
|
||||
popt
|
||||
@@ -1222,7 +1625,6 @@ pyatspi
|
||||
pycairo
|
||||
pycodestyle
|
||||
pycparser
|
||||
pycrypto
|
||||
pycurl
|
||||
pydot
|
||||
pydot_ng
|
||||
@@ -1248,7 +1650,6 @@ python-augeas
|
||||
python-dateutil
|
||||
python-future
|
||||
python-gflags
|
||||
python-keyczar
|
||||
python-krbV
|
||||
python-magic
|
||||
python-memcached
|
||||
@@ -1296,12 +1697,14 @@ qtsvg
|
||||
qttools
|
||||
qttranslations
|
||||
qtvirtualkeyboard
|
||||
qtwayland
|
||||
qtwebchannel
|
||||
qtwebsockets
|
||||
qtx11extras
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quilt
|
||||
ragel
|
||||
randrproto
|
||||
rdma-core
|
||||
re2c
|
||||
@@ -1320,6 +1723,7 @@ rng-tools
|
||||
rope
|
||||
rpcbind
|
||||
rpm
|
||||
rr
|
||||
rsa
|
||||
rsync
|
||||
ruby
|
||||
@@ -1330,6 +1734,8 @@ rxvt-unicode
|
||||
s2tc
|
||||
s3transfer
|
||||
samba
|
||||
sane-backends
|
||||
sassc
|
||||
satyr
|
||||
sbc
|
||||
sbsigntools
|
||||
@@ -1356,6 +1762,7 @@ shared-mime-info
|
||||
sharutils
|
||||
shim
|
||||
siege
|
||||
simple-scan
|
||||
simplegeneric
|
||||
simplejson
|
||||
sip
|
||||
@@ -1392,6 +1799,7 @@ strace
|
||||
subunit
|
||||
sudo
|
||||
sure
|
||||
suricata
|
||||
swig
|
||||
swupd-client
|
||||
swupd-overdue
|
||||
@@ -1455,6 +1863,7 @@ tzdata
|
||||
tzlocal
|
||||
udisks2
|
||||
uhttpmock
|
||||
unbundle
|
||||
unicode-xid
|
||||
unifdef
|
||||
unittest2
|
||||
@@ -1472,6 +1881,7 @@ util-linux
|
||||
util-macros
|
||||
uwsgi
|
||||
v4l-utils
|
||||
vala
|
||||
valgrind
|
||||
vcversioner
|
||||
videoproto
|
||||
@@ -1484,6 +1894,7 @@ virt-viewer
|
||||
virtualenv
|
||||
vlc
|
||||
volume_key
|
||||
vorbis-tools
|
||||
vsqlite
|
||||
vte
|
||||
vulkan-sdk
|
||||
@@ -1502,6 +1913,8 @@ wget
|
||||
wheel
|
||||
which
|
||||
widgetsnbextension
|
||||
wireless-regdb-master
|
||||
woff2
|
||||
wol
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
@@ -1520,6 +1933,7 @@ xclip
|
||||
xcmiscproto
|
||||
xcursor-themes
|
||||
xcursorgen
|
||||
xdg-desktop-portal
|
||||
xdg-user-dirs
|
||||
xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
|
||||
+1
-1
@@ -149,4 +149,4 @@ fi
|
||||
echo -en "\n************************\n"
|
||||
|
||||
echo 'Workspace has been set up in the "clearlinux" directory'
|
||||
echo 'NOTE: logout and log back in or run "newgrp kvm" to finalize the setup process'
|
||||
echo 'NOTE: logout and log back in to finalize the setup process'
|
||||
|
||||
Reference in New Issue
Block a user