Compare commits

..

19 Commits

Author SHA1 Message Date
clrbuilder b443e169d5 Update packages file for version 34360
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-03-09 00:06:34 -08:00
Patrick McCarty cd55363a3c Improve detection of the debuginfo rpm
It's not likely for a package name to have the substring "-debuginfo",
but just in case, implement more robust detection of the actual
debuginfo rpm for a package by constructing the name more carefully.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-03-09 06:19:40 +00:00
Patrick McCarty e0054520f8 Filter out debuginfo rpms when scanning for banned files
The debuginfo subpackages are automatically generated, with content
installed according to a predefined directory layout, so there is little
value in checking for banned files they may ship.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-03-09 06:02:10 +00:00
Patrick McCarty ecb84bfabf Add two new CRAN packages
Needed to satisfy new updates for `R-kableExtra` and `R-ks`.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-03-08 22:43:34 +00:00
clrbuilder 6b3a74eea5 Update packages file for version 34350
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-03-04 00:08:35 -08:00
Patrick McCarty 9b81676c6f The make diff command should ignore untracked content
If a package repo contains only untracked content, `make diff` prints
output for it in this form:

    Uncommitted changes in: packages/FOO
     0 files changed

Avoid this type of output by more carefully detecting local package repo
changes that will actually produce a diffstat.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-03-04 02:17:03 +00:00
clrbuilder e0844510f6 Update packages file for version 34340
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-03-02 12:35:14 -08:00
clrbuilder 536b562a5b Update packages file for version 34330
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-03-02 08:12:17 -08:00
clrbuilder c4cb75a89f Update packages file for version 34310
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-25 00:07:59 -08:00
clrbuilder 244e21ef2d Update packages file for version 34300
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-23 00:09:02 -08:00
clrbuilder 8defd1c276 Update packages file for version 34290
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-18 00:08:17 -08:00
clrbuilder 3bd55aea4f Update packages file for version 34280
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-16 00:08:08 -08:00
clrbuilder e76c4bd179 Update packages file for version 34270
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-11 00:07:31 -08:00
clrbuilder 2383eca632 Update packages file for version 34260
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-09 00:08:27 -08:00
clrbuilder 89f861fda6 Update packages file for version 34250
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-04 00:07:32 -08:00
clrbuilder 447126c594 Update packages file for version 34230
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-02-02 00:09:39 -08:00
Patrick McCarty a3ad322a0a Add a few new R packages
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-01-27 23:17:04 +00:00
clrbuilder c357625466 Update packages file for version 34200
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-01-26 00:09:59 -08:00
clrbuilder ee3938da6c Update packages file for version 34190
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-01-21 00:07:46 -08:00
3 changed files with 46 additions and 11 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || $(call queryspec,%{NVR}\n,$(SPECFILE)
SRPMFILE = results/$(SRPMVERS).src.rpm
LATEST_RPMS = $(wildcard rpms/*.rpm)
DEBUGINFO_RPM = $(wildcard rpms/*-debuginfo-*.rpm)
DEBUGINFO_RPM = $(wildcard rpms/${PKG_NAME}-debuginfo-$(shell $(call queryspec,%{V}-%{R},${SPECFILE})).*.rpm)
RPMS ?= $(LATEST_RPMS)
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
@@ -78,7 +78,7 @@ configemail:
#help checkblacklist: Verify rpms files to not include banned files for Clear Linux OS.
checkblacklist:
@$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist results/*.rpm
@$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(filter-out ${DEBUGINFO_RPM},${RPMS})
prebuild-checks:
+1 -1
View File
@@ -163,7 +163,7 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
#help diffstat. Requires that diffstat is installed.
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
(cd $$p ; git status | grep -q 'nothing to commit, working [^ ]* clean' || (echo "Uncommitted changes in: $$p"; git diff |diffstat -p1)) ;\
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git diff | diffstat -p1); :) ;\
done
#help log: Run git log origin/master..HEAD for all package repos, thus
+43 -8
View File
@@ -107,6 +107,7 @@ R-DT
R-DendSer
R-Deriv
R-DescTools
R-DiagrammeR
R-DistributionUtils
R-DoseFinding
R-Ecdat
@@ -260,9 +261,11 @@ R-bridgesampling
R-brio
R-brms
R-broom
R-bslib
R-bvls
R-ca
R-caTools
R-cachem
R-calibrate
R-calibrator
R-callr
@@ -293,6 +296,7 @@ R-commonmark
R-compositions
R-conditionz
R-config
R-conflicted
R-conquer
R-contfrac
R-conting
@@ -354,6 +358,7 @@ R-eRm
R-earth
R-eco
R-ecodist
R-eddington
R-effects
R-eha
R-eiPack
@@ -393,6 +398,7 @@ R-fUnitRoots
R-fail
R-fansi
R-farver
R-fastGHQuad
R-fastICA
R-fastcluster
R-fastmap
@@ -452,6 +458,7 @@ R-ggvis
R-gh
R-git2r
R-gitcreds
R-gld
R-glmnet
R-globals
R-glue
@@ -464,6 +471,7 @@ R-gower
R-gplots
R-gridBase
R-gridExtra
R-gsl
R-gss
R-gtable
R-gtools
@@ -504,6 +512,7 @@ R-joineR
R-joineRML
R-jpeg
R-jqr
R-jquerylib
R-jsonlite
R-kableExtra
R-keras
@@ -540,6 +549,7 @@ R-listviewer
R-lle
R-lme4
R-lmerTest
R-lmom
R-lmtest
R-locfit
R-logcondens
@@ -571,6 +581,7 @@ R-mda
R-measures
R-memisc
R-memoise
R-metafor
R-mi
R-mice
R-microbenchmark
@@ -660,6 +671,7 @@ R-pkgload
R-pkgmaker
R-plm
R-plogr
R-plot3D
R-plotly
R-plotmo
R-plotrix
@@ -725,6 +737,7 @@ R-rbenchmark
R-rbibutils
R-rcmdcheck
R-reactR
R-reactable
R-reactlog
R-readODS
R-readr
@@ -781,6 +794,7 @@ R-rsdmx
R-rstan
R-rstanarm
R-rstantools
R-rstpm2
R-rstudio
R-rstudio-server
R-rstudioapi
@@ -791,6 +805,7 @@ R-rvest
R-sROC
R-sampling
R-sandwich
R-sass
R-scales
R-scatterplot3d
R-sde
@@ -833,6 +848,8 @@ R-spam
R-sparkline
R-spatstat
R-spatstat.data
R-spatstat.geom
R-spatstat.sparse
R-spatstat.utils
R-spc
R-spdep
@@ -855,6 +872,7 @@ R-subselect
R-superpc
R-survey
R-svUnit
R-svglite
R-sys
R-systemfit
R-systemfonts
@@ -906,6 +924,7 @@ R-vcdExtra
R-vcr
R-vctrs
R-vegan
R-vembedr
R-vioplot
R-viridis
R-viridisLite
@@ -984,6 +1003,7 @@ XStatic-term.js
Z3
abireport
absl-py
abydos
accountsservice
acl
acme
@@ -1080,6 +1100,7 @@ automake
autossh
avahi
awesome-wm
awesomeversion
awscli
axel
azure-configs
@@ -1115,6 +1136,8 @@ bleach
blender
blinken
blinker
blivet
blivet-gui
blktrace
blockdiag
bluedevil
@@ -1133,6 +1156,7 @@ boto
boto3
botocore
bovo
box2d
bpftrace
breeze
breeze-gtk
@@ -1268,22 +1292,20 @@ colord-gtk
colordiff
columbiad
commonmark
compat-boost-soname1.72.0
compat-atkmm-soname16
compat-boost-soname1.73.0
compat-cairomm-soname10
compat-curl-gnutls-soname4
compat-enchant-soname1
compat-fuse-soname2
compat-glibmm-soname24
compat-gtksourceview-soname3
compat-icu4c-soname64
compat-libhandy-0.0
compat-libpng-soname12
compat-libraw-soname19
compat-libsigc++-soname20
compat-libva-soname1
compat-nettle-soname6
compat-nettle-soname7
compat-opencv-soname42
compat-protobuf-soname22
compat-python38
compat-pangomm-soname14
compat-re2-soname7
compat-readline-soname5
compat-tracker-soname2.0
@@ -1366,6 +1388,7 @@ diffoscope
diffstat
diffutils
digikam
dill
ding-libs
dino
direwolf
@@ -1561,6 +1584,7 @@ geany
geany-plugins
geary
gedit
gedit-plugins-gnome
geeqie
gegl
gensim
@@ -1868,6 +1892,7 @@ javaproperties
jdcal
jedi
jeepney
jellyfish
jemalloc
jmespath
joblib
@@ -2104,6 +2129,7 @@ ktp-desktop-applets
ktuberling
kturtle
kubernetes
kubernetes-migration-1.18
kunitconversion
kwallet
kwallet-pam
@@ -2154,7 +2180,6 @@ libXtst
libXv
libXvMC
libXxf86dga
libXxf86misc
libabigail
libabw
libaio
@@ -2198,6 +2223,7 @@ libdmx
libdnf
libdrm
libe-book
libebur128
libeconf
libedit
libepoxy
@@ -2533,6 +2559,7 @@ mkl-dnn
mkosi
mlocate
mlt
mm-common
mmc-utils
mobile-broadband-provider-info
mock
@@ -2590,6 +2617,7 @@ nano
nasm
nautilus
nbclassic
nbclient
nbconvert
nbformat
nbval
@@ -2602,6 +2630,7 @@ ndpi
neofetch
neomutt
neovim
nest_asyncio
net-snmp
net-tools
netaddr
@@ -2769,6 +2798,7 @@ pdns
pdns-recursor
pdsh
pecan
ped
pep517
pep8
perftest
@@ -3355,6 +3385,7 @@ perl-SGMLS
perl-SMTP-Server
perl-SQL-Abstract
perl-SQL-Abstract-Classic
perl-SQL-Abstract-Pg
perl-SQL-SplitStatement
perl-SQL-Tokenizer
perl-SQL-Translator
@@ -3664,6 +3695,7 @@ php-zmq
pickleshare
picmi
picocom
pid
pidgin
pidgin-sipe
pigeonhole
@@ -3780,6 +3812,7 @@ pynvim
pyotherside
pyotp
pyparsing
pyparted
pyperclip
pyperf
pyquery
@@ -3844,6 +3877,7 @@ pyu2f
pyudev
pyusb
pywbem
pyxDamerauLevenshtein
pyxattr
pyxdg
pyzmq
@@ -3950,6 +3984,7 @@ rinutils
rjsmin
rlwrap
rng-tools
robin-map
roboto
rocs
rofi