mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 052fa48e83 | |||
| 382ed28176 | |||
| e695db8c80 | |||
| f12e7e48ea | |||
| f269683632 | |||
| a2c4413083 | |||
| cc6e70bb29 | |||
| f3989c0d5a | |||
| f697b227e8 | |||
| 01e548b268 |
+8
-17
@@ -4,8 +4,8 @@ all: build
|
|||||||
|
|
||||||
TOPLVL = ../..
|
TOPLVL = ../..
|
||||||
|
|
||||||
include $(TOPLVL)/projects/common/Makefile.functions
|
|
||||||
include $(TOPLVL)/projects/common/Makefile.config
|
include $(TOPLVL)/projects/common/Makefile.config
|
||||||
|
include $(TOPLVL)/projects/common/Makefile.shared
|
||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
@@ -19,12 +19,9 @@ 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 )
|
||||||
|
|
||||||
ifeq ($(wildcard $(TOPLVL)/repo/clear.cfg),)
|
# MOCK_CONFIG_VAL is set in Makefile.shared
|
||||||
MOCK ?= $(WITH_SUDO) /usr/bin/mock -r $(MOCK_CONF)
|
MOCK ?= $(WITH_SUDO) /usr/bin/mock -r $(MOCK_CONFIG_VAL)
|
||||||
else
|
|
||||||
MOCK ?= $(WITH_SUDO) /usr/bin/mock -r $(TOPLVL)/repo/clear.cfg
|
|
||||||
USE_LOCAL_REPO = 1
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq ($(wildcard upstream),)
|
ifneq ($(wildcard upstream),)
|
||||||
__allsources := $(notdir $(strip $(shell cat upstream)))
|
__allsources := $(notdir $(strip $(shell cat upstream)))
|
||||||
@@ -118,15 +115,8 @@ shell:
|
|||||||
|
|
||||||
# Always rebuild the source rpm
|
# Always rebuild the source rpm
|
||||||
.PHONY: $(SRPMFILE)
|
.PHONY: $(SRPMFILE)
|
||||||
$(SRPMFILE): $(SPECFILE) $(__allsources)
|
$(SRPMFILE): $(SPECFILE) $(__allsources) localreponotice
|
||||||
@$(MAKE) spdxcheck
|
@$(MAKE) spdxcheck
|
||||||
@if [ -n "${USE_LOCAL_REPO}" ]; then \
|
|
||||||
printf '\n\n** NOTICE: Using local repo for the build. Continuing after 3 seconds.\n'; \
|
|
||||||
printf '** If this is not desired, run `make repodisable`.\n'; \
|
|
||||||
printf '** The repo can be re-enabled later with `make repoenable`.\n'; \
|
|
||||||
printf '** Run `touch $(TOPLVL)/repo/opt-in-build` to prevent the 3 second delay.\n\n\n'; \
|
|
||||||
[ -f $(TOPLVL)/repo/opt-in-build ] || sleep 3; \
|
|
||||||
fi >&2
|
|
||||||
$(MOCK) --buildsrpm --source=./ --spec=$(SPECFILE) --result=results/ --no-cleanup-after --uniqueext=$(PKG_NAME)
|
$(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
|
# Do a git fetch and a git rebase rather than a git pull so aborting
|
||||||
@@ -154,7 +144,7 @@ pullrebase:
|
|||||||
#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. For more information, see
|
#help autospec will be created in the process. For more information, see
|
||||||
#help the project at https://github.com/clearlinux/autospec
|
#help the project at https://github.com/clearlinux/autospec
|
||||||
autospec: pullrebase
|
autospec: pullrebase localreponotice
|
||||||
rm -f results/*src.rpm
|
rm -f results/*src.rpm
|
||||||
@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."; \
|
||||||
@@ -164,7 +154,8 @@ autospec: pullrebase
|
|||||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py -t . --integrity \
|
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py -t . --integrity \
|
||||||
${NON_INTERACTIVE} --config "$(AUTOSPEC_CONF)" ${SKIP_GIT} \
|
${NON_INTERACTIVE} --config "$(AUTOSPEC_CONF)" ${SKIP_GIT} \
|
||||||
$(firstword $(NEWURL) $(URL)) --name $(PKG_NAME) ${CLEANUP} \
|
$(firstword $(NEWURL) $(URL)) --name $(PKG_NAME) ${CLEANUP} \
|
||||||
$${SETVERSION:+ -v $${SETVERSION}} -a $(ARCHIVES)
|
$${SETVERSION:+ -v $${SETVERSION}} -a $(ARCHIVES) \
|
||||||
|
-m $(MOCK_CONFIG_VAL)
|
||||||
@$(MAKE) spdxcheck
|
@$(MAKE) spdxcheck
|
||||||
@$(MAKE) checkblacklist
|
@$(MAKE) checkblacklist
|
||||||
@if [ -e update_changelog.sh ] && [ -z "$$SKIP_GIT" ] ; then \
|
@if [ -e update_changelog.sh ] && [ -z "$$SKIP_GIT" ] ; then \
|
||||||
|
|||||||
@@ -119,6 +119,24 @@ localrepostatus:
|
|||||||
fi; \
|
fi; \
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Detection of whether to use the local RPM repo occurs on-the-fly. Normally,
|
||||||
|
# variable definitions appear in Makefile.config, but these variables are not
|
||||||
|
# intended to be user-modifiable.
|
||||||
|
ifeq ($(wildcard $(TOPLVL)/repo/clear.cfg),)
|
||||||
|
MOCK_CONFIG_VAL = $(realpath $(MOCK_CONF))
|
||||||
|
else
|
||||||
|
MOCK_CONFIG_VAL = $(realpath $(TOPLVL)/repo/clear.cfg)
|
||||||
|
USE_LOCAL_REPO = 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
localreponotice:
|
||||||
|
@if [ -n "${USE_LOCAL_REPO}" ]; then \
|
||||||
|
printf '\n\n** NOTICE: Using local repo for the build. Continuing after 3 seconds.\n'; \
|
||||||
|
printf '** If this is not desired, run `make repodisable`.\n'; \
|
||||||
|
printf '** The repo can be re-enabled later with `make repoenable`.\n'; \
|
||||||
|
printf '** Run `touch $(TOPLVL)/repo/opt-in-build` to prevent the 3 second delay.\n\n\n'; \
|
||||||
|
[ -f $(TOPLVL)/repo/opt-in-build ] || sleep 3; \
|
||||||
|
fi >&2
|
||||||
|
|
||||||
.PHONY: help
|
.PHONY: help
|
||||||
##### Code
|
##### Code
|
||||||
+8
-4
@@ -4,8 +4,8 @@ all: clone
|
|||||||
|
|
||||||
TOPLVL = .
|
TOPLVL = .
|
||||||
|
|
||||||
include $(TOPLVL)/projects/common/Makefile.functions
|
|
||||||
include $(TOPLVL)/projects/common/Makefile.config
|
include $(TOPLVL)/projects/common/Makefile.config
|
||||||
|
include $(TOPLVL)/projects/common/Makefile.shared
|
||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
@@ -80,7 +80,11 @@ ${PULL_PKGS}:
|
|||||||
fi ; \
|
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; \
|
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 ; \
|
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 \
|
else \
|
||||||
echo "$$p: no such remote 'origin'"; \
|
echo "$$p: no such remote 'origin'"; \
|
||||||
fi ; \
|
fi ; \
|
||||||
@@ -188,7 +192,7 @@ provides:
|
|||||||
#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. For more information about autospec, see the project page on Github https://github.com/clearlinux/autospec
|
#help process. For more information about autospec, see the project page on Github https://github.com/clearlinux/autospec
|
||||||
autospecnew:
|
autospecnew: 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; \
|
||||||
@@ -204,7 +208,7 @@ autospecnew:
|
|||||||
$(call subjectprefix,$(NAME)); \
|
$(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; \
|
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); \
|
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py --integrity -t packages/$(NAME) --config $(AUTOSPEC_CONF) $(URL) --name $(NAME) -m $(MOCK_CONFIG_VAL); \
|
||||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||||
else \
|
else \
|
||||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||||
|
|||||||
@@ -31,116 +31,324 @@ Pygments
|
|||||||
QtAwesome
|
QtAwesome
|
||||||
QtPy
|
QtPy
|
||||||
R
|
R
|
||||||
|
R-AER
|
||||||
R-BH
|
R-BH
|
||||||
|
R-Brobdingnag
|
||||||
|
R-CVST
|
||||||
R-Cairo
|
R-Cairo
|
||||||
|
R-CircStats
|
||||||
R-DBI
|
R-DBI
|
||||||
|
R-DBItest
|
||||||
|
R-DEoptim
|
||||||
|
R-DEoptimR
|
||||||
|
R-DRR
|
||||||
|
R-DT
|
||||||
|
R-DistributionUtils
|
||||||
|
R-Ecdat
|
||||||
|
R-Ecfun
|
||||||
|
R-EnvStats
|
||||||
|
R-FNN
|
||||||
|
R-Formula
|
||||||
|
R-GPArotation
|
||||||
|
R-GeneralizedHyperbolic
|
||||||
|
R-Hmisc
|
||||||
|
R-ICS
|
||||||
|
R-ICSNP
|
||||||
R-IRdisplay
|
R-IRdisplay
|
||||||
R-IRkernel
|
R-IRkernel
|
||||||
|
R-Lahman
|
||||||
|
R-LearnBayes
|
||||||
|
R-Matching
|
||||||
R-MatrixModels
|
R-MatrixModels
|
||||||
|
R-R2Cuba
|
||||||
R-R6
|
R-R6
|
||||||
|
R-RANN
|
||||||
R-RColorBrewer
|
R-RColorBrewer
|
||||||
R-RCurl
|
R-RCurl
|
||||||
|
R-RJSONIO
|
||||||
|
R-RSQLite
|
||||||
|
R-RUnit
|
||||||
|
R-RandomFields
|
||||||
|
R-RandomFieldsUtils
|
||||||
R-Rcpp
|
R-Rcpp
|
||||||
|
R-RcppArmadillo
|
||||||
R-RcppEigen
|
R-RcppEigen
|
||||||
|
R-RcppRoll
|
||||||
|
R-SQUAREM
|
||||||
|
R-Sleuth2
|
||||||
R-SparseM
|
R-SparseM
|
||||||
|
R-StanHeaders
|
||||||
|
R-SuppDists
|
||||||
R-TH.data
|
R-TH.data
|
||||||
|
R-TRAMPR
|
||||||
R-TTR
|
R-TTR
|
||||||
|
R-TeachingDemos
|
||||||
R-XML
|
R-XML
|
||||||
|
R-abind
|
||||||
|
R-acepack
|
||||||
|
R-actuar
|
||||||
|
R-ade4
|
||||||
|
R-analogue
|
||||||
|
R-ape
|
||||||
|
R-argparse
|
||||||
|
R-arm
|
||||||
R-assertthat
|
R-assertthat
|
||||||
R-backports
|
R-backports
|
||||||
R-base64enc
|
R-base64enc
|
||||||
|
R-bayesm
|
||||||
|
R-bdsmatrix
|
||||||
|
R-betareg
|
||||||
|
R-bibtex
|
||||||
|
R-bindr
|
||||||
|
R-bindrcpp
|
||||||
|
R-bipartite
|
||||||
|
R-bit
|
||||||
|
R-bit64
|
||||||
R-bitops
|
R-bitops
|
||||||
|
R-blob
|
||||||
R-brew
|
R-brew
|
||||||
|
R-brglm
|
||||||
|
R-bridgesampling
|
||||||
|
R-caTools
|
||||||
|
R-callr
|
||||||
R-car
|
R-car
|
||||||
|
R-cclust
|
||||||
|
R-checkmate
|
||||||
R-chron
|
R-chron
|
||||||
|
R-cli
|
||||||
|
R-coda
|
||||||
|
R-coin
|
||||||
R-colorspace
|
R-colorspace
|
||||||
|
R-combinat
|
||||||
R-commonmark
|
R-commonmark
|
||||||
|
R-compositions
|
||||||
|
R-cowplot
|
||||||
R-crayon
|
R-crayon
|
||||||
|
R-crosstalk
|
||||||
R-curl
|
R-curl
|
||||||
|
R-data.table
|
||||||
|
R-dbarts
|
||||||
|
R-ddalpha
|
||||||
|
R-deSolve
|
||||||
|
R-debugme
|
||||||
R-deepnet
|
R-deepnet
|
||||||
|
R-deldir
|
||||||
R-desc
|
R-desc
|
||||||
R-devtools
|
R-devtools
|
||||||
R-dichromat
|
R-dichromat
|
||||||
|
R-diffusionMap
|
||||||
R-digest
|
R-digest
|
||||||
|
R-diptest
|
||||||
|
R-dlm
|
||||||
|
R-doMC
|
||||||
|
R-doParallel
|
||||||
|
R-dotCall64
|
||||||
|
R-dplyr
|
||||||
|
R-drc
|
||||||
|
R-dtw
|
||||||
R-dynlm
|
R-dynlm
|
||||||
R-e1071
|
R-e1071
|
||||||
|
R-ellipse
|
||||||
|
R-energy
|
||||||
R-evaluate
|
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-foreach
|
R-foreach
|
||||||
R-formatR
|
R-formatR
|
||||||
|
R-fpc
|
||||||
|
R-futile.logger
|
||||||
|
R-futile.options
|
||||||
|
R-gam
|
||||||
|
R-gdata
|
||||||
|
R-geometry
|
||||||
|
R-getopt
|
||||||
R-ggplot2
|
R-ggplot2
|
||||||
|
R-ggplot2movies
|
||||||
R-git2r
|
R-git2r
|
||||||
R-glmnet
|
R-glmnet
|
||||||
|
R-glue
|
||||||
|
R-gmodels
|
||||||
|
R-goftest
|
||||||
|
R-gower
|
||||||
|
R-gplots
|
||||||
|
R-gridExtra
|
||||||
R-gtable
|
R-gtable
|
||||||
R-gtools
|
R-gtools
|
||||||
|
R-hexbin
|
||||||
R-highr
|
R-highr
|
||||||
R-hms
|
R-hms
|
||||||
|
R-htmlTable
|
||||||
R-htmltools
|
R-htmltools
|
||||||
|
R-htmlwidgets
|
||||||
R-httpuv
|
R-httpuv
|
||||||
R-httr
|
R-httr
|
||||||
|
R-igraph
|
||||||
|
R-inline
|
||||||
|
R-inum
|
||||||
R-iterators
|
R-iterators
|
||||||
|
R-jpeg
|
||||||
R-jsonlite
|
R-jsonlite
|
||||||
|
R-kernlab
|
||||||
R-knitr
|
R-knitr
|
||||||
R-labeling
|
R-labeling
|
||||||
|
R-laeken
|
||||||
|
R-lambda.r
|
||||||
|
R-latticeExtra
|
||||||
|
R-lava
|
||||||
R-lazyeval
|
R-lazyeval
|
||||||
|
R-lfe
|
||||||
|
R-libcoin
|
||||||
R-lme4
|
R-lme4
|
||||||
R-lmtest
|
R-lmtest
|
||||||
|
R-locfit
|
||||||
|
R-lpSolve
|
||||||
R-lubridate
|
R-lubridate
|
||||||
|
R-magic
|
||||||
R-magrittr
|
R-magrittr
|
||||||
R-manipulate
|
R-manipulate
|
||||||
R-mapproj
|
R-mapproj
|
||||||
R-maps
|
R-maps
|
||||||
R-maptools
|
R-maptools
|
||||||
R-markdown
|
R-markdown
|
||||||
|
R-matrixStats
|
||||||
|
R-matrixcalc
|
||||||
|
R-maxLik
|
||||||
|
R-mclust
|
||||||
R-memoise
|
R-memoise
|
||||||
|
R-mi
|
||||||
R-microbenchmark
|
R-microbenchmark
|
||||||
R-mime
|
R-mime
|
||||||
|
R-minpack.lm
|
||||||
R-minqa
|
R-minqa
|
||||||
|
R-miscTools
|
||||||
|
R-mlbench
|
||||||
|
R-mnormt
|
||||||
R-mockery
|
R-mockery
|
||||||
|
R-modeltools
|
||||||
R-mondate
|
R-mondate
|
||||||
R-multcomp
|
R-multcomp
|
||||||
|
R-multiwayvcov
|
||||||
R-munsell
|
R-munsell
|
||||||
R-mvtnorm
|
R-mvtnorm
|
||||||
|
R-network
|
||||||
R-neuralnet
|
R-neuralnet
|
||||||
|
R-nleqslv
|
||||||
R-nloptr
|
R-nloptr
|
||||||
|
R-nortest
|
||||||
|
R-numDeriv
|
||||||
|
R-nycflights13
|
||||||
R-openssl
|
R-openssl
|
||||||
|
R-party
|
||||||
|
R-partykit
|
||||||
R-pbdZMQ
|
R-pbdZMQ
|
||||||
R-pbkrtest
|
R-pbkrtest
|
||||||
|
R-pcaPP
|
||||||
|
R-pdfCluster
|
||||||
|
R-permute
|
||||||
R-pillar
|
R-pillar
|
||||||
R-pkgconfig
|
R-pkgconfig
|
||||||
|
R-pkgmaker
|
||||||
|
R-plm
|
||||||
|
R-plogr
|
||||||
|
R-plotrix
|
||||||
R-plyr
|
R-plyr
|
||||||
|
R-pmml
|
||||||
R-png
|
R-png
|
||||||
|
R-polspline
|
||||||
|
R-polyclip
|
||||||
|
R-polycor
|
||||||
|
R-prabclus
|
||||||
R-praise
|
R-praise
|
||||||
|
R-princurve
|
||||||
|
R-prodlim
|
||||||
|
R-profileModel
|
||||||
R-proto
|
R-proto
|
||||||
|
R-proxy
|
||||||
R-pryr
|
R-pryr
|
||||||
|
R-psych
|
||||||
|
R-purrr
|
||||||
|
R-pxweb
|
||||||
R-quadprog
|
R-quadprog
|
||||||
R-quantmod
|
R-quantmod
|
||||||
R-quantreg
|
R-quantreg
|
||||||
R-randomForest
|
R-randomForest
|
||||||
|
R-raster
|
||||||
|
R-rasterVis
|
||||||
|
R-registry
|
||||||
R-repr
|
R-repr
|
||||||
|
R-reshape
|
||||||
R-reshape2
|
R-reshape2
|
||||||
|
R-reticulate
|
||||||
|
R-rgenoud
|
||||||
|
R-rgl
|
||||||
R-rlang
|
R-rlang
|
||||||
R-rmarkdown
|
R-rmarkdown
|
||||||
|
R-rms
|
||||||
|
R-robustbase
|
||||||
|
R-rootSolve
|
||||||
R-roxygen2
|
R-roxygen2
|
||||||
R-rprojroot
|
R-rprojroot
|
||||||
R-rstudioapi
|
R-rstudioapi
|
||||||
R-rversions
|
R-rversions
|
||||||
|
R-sampling
|
||||||
R-sandwich
|
R-sandwich
|
||||||
R-scales
|
R-scales
|
||||||
|
R-scatterplot3d
|
||||||
|
R-sem
|
||||||
|
R-setRNG
|
||||||
|
R-sfsmisc
|
||||||
R-shiny
|
R-shiny
|
||||||
|
R-shinythemes
|
||||||
|
R-sm
|
||||||
|
R-sn
|
||||||
|
R-sna
|
||||||
|
R-snow
|
||||||
R-sourcetools
|
R-sourcetools
|
||||||
R-sp
|
R-sp
|
||||||
|
R-spData
|
||||||
|
R-spam
|
||||||
|
R-spatstat.data
|
||||||
|
R-spatstat.utils
|
||||||
|
R-spdep
|
||||||
R-statmod
|
R-statmod
|
||||||
|
R-statnet.common
|
||||||
R-stringi
|
R-stringi
|
||||||
R-stringr
|
R-stringr
|
||||||
|
R-strucchange
|
||||||
|
R-survey
|
||||||
|
R-systemfit
|
||||||
R-tau
|
R-tau
|
||||||
|
R-tclust
|
||||||
|
R-tensor
|
||||||
|
R-tensorA
|
||||||
R-testit
|
R-testit
|
||||||
R-testthat
|
R-testthat
|
||||||
|
R-threejs
|
||||||
R-tibble
|
R-tibble
|
||||||
|
R-tidyr
|
||||||
|
R-tidyselect
|
||||||
R-timeDate
|
R-timeDate
|
||||||
R-tis
|
R-tis
|
||||||
|
R-treatSens
|
||||||
R-tree
|
R-tree
|
||||||
|
R-trimcluster
|
||||||
|
R-truncnorm
|
||||||
R-tseries
|
R-tseries
|
||||||
|
R-utf8
|
||||||
R-uuid
|
R-uuid
|
||||||
|
R-vcd
|
||||||
|
R-vegan
|
||||||
|
R-viridis
|
||||||
R-viridisLite
|
R-viridisLite
|
||||||
R-whisker
|
R-whisker
|
||||||
R-withr
|
R-withr
|
||||||
@@ -182,6 +390,8 @@ accountsservice
|
|||||||
acl
|
acl
|
||||||
acme
|
acme
|
||||||
acpica-unix2
|
acpica-unix2
|
||||||
|
acrn-devicemodel
|
||||||
|
acrn-hypervisor
|
||||||
adwaita-icon-theme
|
adwaita-icon-theme
|
||||||
aeon
|
aeon
|
||||||
alabaster
|
alabaster
|
||||||
@@ -233,6 +443,7 @@ babl
|
|||||||
backports.functools_lru_cache
|
backports.functools_lru_cache
|
||||||
backports.ssl_match_hostname
|
backports.ssl_match_hostname
|
||||||
backports.weakref
|
backports.weakref
|
||||||
|
baobab
|
||||||
bash
|
bash
|
||||||
bash-completion
|
bash-completion
|
||||||
bash_kernel
|
bash_kernel
|
||||||
@@ -273,6 +484,7 @@ cabextract
|
|||||||
cached-property
|
cached-property
|
||||||
cairo
|
cairo
|
||||||
cairomm
|
cairomm
|
||||||
|
cantarell-fonts
|
||||||
cargo
|
cargo
|
||||||
caribou
|
caribou
|
||||||
catch2
|
catch2
|
||||||
@@ -368,6 +580,7 @@ cpuid
|
|||||||
cracklib
|
cracklib
|
||||||
crcmod
|
crcmod
|
||||||
createrepo_c
|
createrepo_c
|
||||||
|
cri-containerd
|
||||||
cri-o
|
cri-o
|
||||||
cri-tools
|
cri-tools
|
||||||
cryptography
|
cryptography
|
||||||
@@ -413,6 +626,7 @@ docbook-xml
|
|||||||
docker
|
docker
|
||||||
docker-py
|
docker-py
|
||||||
docutils
|
docutils
|
||||||
|
dogtail
|
||||||
dos2unix
|
dos2unix
|
||||||
dosfstools
|
dosfstools
|
||||||
double-conversion
|
double-conversion
|
||||||
@@ -477,6 +691,7 @@ flex
|
|||||||
flmsg
|
flmsg
|
||||||
flnet
|
flnet
|
||||||
fltk
|
fltk
|
||||||
|
folks
|
||||||
font-adobe-100dpi
|
font-adobe-100dpi
|
||||||
font-adobe-75dpi
|
font-adobe-75dpi
|
||||||
font-bitstream-type1
|
font-bitstream-type1
|
||||||
@@ -514,6 +729,7 @@ geocode-glib
|
|||||||
gettext
|
gettext
|
||||||
gevent
|
gevent
|
||||||
gexiv2
|
gexiv2
|
||||||
|
gfbgraph
|
||||||
gflags
|
gflags
|
||||||
ghostscript
|
ghostscript
|
||||||
gimp
|
gimp
|
||||||
@@ -542,6 +758,7 @@ gnome-bluetooth
|
|||||||
gnome-calculator
|
gnome-calculator
|
||||||
gnome-calendar
|
gnome-calendar
|
||||||
gnome-characters
|
gnome-characters
|
||||||
|
gnome-color-manager
|
||||||
gnome-common
|
gnome-common
|
||||||
gnome-control-center
|
gnome-control-center
|
||||||
gnome-desktop
|
gnome-desktop
|
||||||
@@ -550,17 +767,26 @@ gnome-font-viewer
|
|||||||
gnome-icon-theme
|
gnome-icon-theme
|
||||||
gnome-initial-setup
|
gnome-initial-setup
|
||||||
gnome-keyring
|
gnome-keyring
|
||||||
|
gnome-logs
|
||||||
|
gnome-maps
|
||||||
gnome-menus
|
gnome-menus
|
||||||
|
gnome-music
|
||||||
gnome-online-accounts
|
gnome-online-accounts
|
||||||
gnome-panel
|
gnome-panel
|
||||||
|
gnome-photos
|
||||||
gnome-screenshot
|
gnome-screenshot
|
||||||
gnome-session
|
gnome-session
|
||||||
gnome-settings-daemon
|
gnome-settings-daemon
|
||||||
gnome-shell
|
gnome-shell
|
||||||
gnome-shell-extensions
|
gnome-shell-extensions
|
||||||
|
gnome-system-monitor
|
||||||
gnome-terminal
|
gnome-terminal
|
||||||
gnome-themes-standard
|
gnome-themes-standard
|
||||||
|
gnome-todo
|
||||||
gnome-tweak-tool
|
gnome-tweak-tool
|
||||||
|
gnome-user-docs
|
||||||
|
gnome-video-effects
|
||||||
|
gnome-weather
|
||||||
gnu-efi
|
gnu-efi
|
||||||
gnupg
|
gnupg
|
||||||
gnuplot
|
gnuplot
|
||||||
@@ -568,6 +794,7 @@ gnutls
|
|||||||
go
|
go
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
golang-github-cpuguy83-go-md2man
|
golang-github-cpuguy83-go-md2man
|
||||||
|
gom
|
||||||
goocanvas
|
goocanvas
|
||||||
google-api-python-client
|
google-api-python-client
|
||||||
google-apitools
|
google-apitools
|
||||||
@@ -580,6 +807,7 @@ gpredict
|
|||||||
gptfdisk
|
gptfdisk
|
||||||
gradle
|
gradle
|
||||||
gradle-dep
|
gradle-dep
|
||||||
|
graphene
|
||||||
graphviz
|
graphviz
|
||||||
greenlet
|
greenlet
|
||||||
grep
|
grep
|
||||||
@@ -590,6 +818,7 @@ groff
|
|||||||
grub
|
grub
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
gsl
|
gsl
|
||||||
|
gsound
|
||||||
gspell
|
gspell
|
||||||
gst-plugins-bad
|
gst-plugins-bad
|
||||||
gst-plugins-base
|
gst-plugins-base
|
||||||
@@ -649,6 +878,7 @@ init-rdahead
|
|||||||
inotify-tools
|
inotify-tools
|
||||||
inputproto
|
inputproto
|
||||||
intltool
|
intltool
|
||||||
|
invm-frameworks
|
||||||
ioping
|
ioping
|
||||||
iotop
|
iotop
|
||||||
ipaddr
|
ipaddr
|
||||||
@@ -755,6 +985,7 @@ libcap
|
|||||||
libcap-ng
|
libcap-ng
|
||||||
libcdio
|
libcdio
|
||||||
libcgroup
|
libcgroup
|
||||||
|
libchamplain
|
||||||
libcomps
|
libcomps
|
||||||
libconfig
|
libconfig
|
||||||
libcroco
|
libcroco
|
||||||
@@ -773,6 +1004,7 @@ libgcrypt
|
|||||||
libgd
|
libgd
|
||||||
libgdata
|
libgdata
|
||||||
libgee
|
libgee
|
||||||
|
libgepub
|
||||||
libgfortran-avx
|
libgfortran-avx
|
||||||
libgfortran-compat-soname3
|
libgfortran-compat-soname3
|
||||||
libgit2
|
libgit2
|
||||||
@@ -1195,6 +1427,7 @@ pyOpenSSL
|
|||||||
pyaml
|
pyaml
|
||||||
pyasn1
|
pyasn1
|
||||||
pyasn1-modules
|
pyasn1-modules
|
||||||
|
pyatspi
|
||||||
pycairo
|
pycairo
|
||||||
pycodestyle
|
pycodestyle
|
||||||
pycparser
|
pycparser
|
||||||
@@ -1320,6 +1553,7 @@ screen
|
|||||||
scripttest
|
scripttest
|
||||||
scrnsaverproto
|
scrnsaverproto
|
||||||
seaborn
|
seaborn
|
||||||
|
seahorse
|
||||||
secretstorage
|
secretstorage
|
||||||
sed
|
sed
|
||||||
setproctitle
|
setproctitle
|
||||||
@@ -1421,6 +1655,7 @@ tqdm
|
|||||||
traceback2
|
traceback2
|
||||||
traceroute
|
traceroute
|
||||||
tracker
|
tracker
|
||||||
|
tracker-miners
|
||||||
traitlets
|
traitlets
|
||||||
tree
|
tree
|
||||||
typed-ast
|
typed-ast
|
||||||
@@ -1452,6 +1687,7 @@ videoproto
|
|||||||
vim
|
vim
|
||||||
vim-go
|
vim-go
|
||||||
vinagre
|
vinagre
|
||||||
|
vino
|
||||||
virt-manager
|
virt-manager
|
||||||
virt-viewer
|
virt-viewer
|
||||||
virtualenv
|
virtualenv
|
||||||
@@ -1469,6 +1705,7 @@ webencodings
|
|||||||
webkitgtk
|
webkitgtk
|
||||||
websocket_client
|
websocket_client
|
||||||
websockify
|
websockify
|
||||||
|
weechat
|
||||||
weston
|
weston
|
||||||
wget
|
wget
|
||||||
wheel
|
wheel
|
||||||
|
|||||||
Reference in New Issue
Block a user