Compare commits

..

17 Commits

Author SHA1 Message Date
clrbuilder cc16065a09 Update packages file for version 21790
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-11 13:01:37 +00:00
clrbuilder 45f2185a25 Update packages file for version 21780
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-10 19:05:07 +00:00
clrbuilder 9ffc0b9640 Update packages file for version 21770
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-10 13:03:01 +00:00
clrbuilder 98c5937801 Update packages file for version 21760
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-09 20:56:43 +00:00
clrbuilder a50450212c Update packages file for version 21720
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-08 13:28:18 +00:00
clrbuilder ab77a99a47 Update packages file for version 21710
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-07 17:41:19 +00:00
clrbuilder 090bb77f92 Update packages file for version 21690
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-06 15:50:48 +00:00
clrbuilder f2b7a30d12 Update packages file for version 21670
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-05 13:07:37 +00:00
clrbuilder c26e27ce65 Update packages file for version 21640
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-03 20:07:19 +00:00
clrbuilder 6fa010e10b Update packages file for version 21610
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-03 13:25:42 +00:00
clrbuilder 173673b5c6 Update packages file for version 21600
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-02 19:07:05 +00:00
clrbuilder eea34ccd7f Update packages file for version 21590
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-04-02 13:49:46 +00:00
clrbuilder fa58b00fb7 Update packages file for version 21580
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-03-30 19:24:39 +00:00
Patrick McCarty cd9b9c1319 user-setup: remove suggestion to run 'newgrp kvm'
If you run `newgrp kvm` after the user-setup script completes, and then
proceed to run `make build`, `make autospec`, etc. within a package
repo, mock will fail because it tries to `groupadd mockbuild` in the
package chroot with the wrong group ID. Logging out and logging back in
results in correct behavior, so leave that as the sole recommendation.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2018-03-29 10:52:16 -07:00
Patrick McCarty d22e4f985d Minor style fix in Makefile.toplevel
In my previous commit, one of the changed lines used a combination of
tabs and spaces, but it should have used tabs only.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2018-03-28 22:19:37 -07:00
clrbuilder eb58950c17 Update packages file for version 21540
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-03-28 16:51:30 +00:00
Patrick McCarty 8ff80b0be2 Sync options for 'autospec' and 'autospecnew' commands
Over time, the autospec options used for 'autospec' and 'autospecnew'
commands have diverged. They are meant to be in sync, so do that here,
and format the recipe in a way that eases future changes.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2018-03-26 14:12:38 -07:00
4 changed files with 78 additions and 8 deletions
+10 -5
View File
@@ -159,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 \
+10 -1
View File
@@ -208,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)"; \
+57 -1
View File
@@ -37,7 +37,9 @@ R-Brobdingnag
R-CVST
R-Cairo
R-CircStats
R-ClustVarLV
R-Cubist
R-DAAG
R-DBI
R-DBItest
R-DEoptim
@@ -66,6 +68,7 @@ R-LearnBayes
R-Matching
R-MatrixModels
R-ModelMetrics
R-NADA
R-NLP
R-NMF
R-NMOF
@@ -141,6 +144,7 @@ R-broom
R-caTools
R-callr
R-car
R-carData
R-caret
R-cclust
R-cellranger
@@ -149,6 +153,7 @@ R-chron
R-circlize
R-classInt
R-cli
R-clue
R-clustMixType
R-coda
R-coin
@@ -320,6 +325,7 @@ R-nortest
R-numDeriv
R-nycflights13
R-openssl
R-openxlsx
R-optparse
R-packrat
R-pamr
@@ -382,6 +388,7 @@ R-reshape2
R-reticulate
R-rgenoud
R-rgl
R-rio
R-rlang
R-rmarkdown
R-rms
@@ -428,6 +435,7 @@ R-sourcetools
R-sp
R-spData
R-spam
R-spatstat
R-spatstat.data
R-spatstat.utils
R-spdep
@@ -475,7 +483,9 @@ R-xml2
R-xtable
R-xts
R-yaml
R-zCompositions
R-zoo
Remmina
SDL
SDL2
SDL2_gfx
@@ -538,7 +548,9 @@ asio
asn1crypto
aspell
aspell-en
astor
astroid
astunparse
at
at-spi2-atk
at-spi2-core
@@ -553,6 +565,7 @@ augeas
authconfig
autoconf
autoconf-archive
autoconf213
autofs
autogen
automake
@@ -560,6 +573,7 @@ awscli
azure-configs
babeltrace
babl
backcall
backports.functools_lru_cache
backports.ssl_match_hostname
backports.weakref
@@ -606,6 +620,7 @@ cached-property
cairo
cairomm
cantarell-fonts
capnproto
cargo
caribou
catch2
@@ -652,6 +667,7 @@ clr-systemd-config
clr-update-triggers
clr-wallpapers
clrtrust
clucene-core
clutter
clutter-gst
clutter-gtk
@@ -671,7 +687,9 @@ 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
@@ -680,6 +698,7 @@ compat-llvm-soname5
compat-mpfr-soname4
compat-opencv-soname32
compat-opencv-soname33
compat-protobuf-soname14
compat-readline
component
compositeproto
@@ -830,6 +849,7 @@ functools32
fuse
futures
garcon
gast
gawk
gc
gcab
@@ -937,6 +957,7 @@ grig
grilo
grilo-plugins
groff
grpcio
grub
gsettings-desktop-schemas
gsl
@@ -980,8 +1001,10 @@ httpd
httplib2
httpretty
hub
hugo
hunspell
hwloc
hyperscan
hyperstart
hypothesis
i2c-tools
@@ -1031,11 +1054,13 @@ ister
itstool
iw
ixpdimm_sw
jansson
jedi
jedi-vim
jemalloc
jmespath
joe
josepy
jq
json-c
json-glib
@@ -1047,6 +1072,8 @@ jupyter-notebook-gist
jupyter_client
jupyter_console
jupyter_core
jupyterlab
jupyterlab_launcher
kafka-dep
kbd
kbproto
@@ -1054,6 +1081,7 @@ kexec-tools
keyring
keyutils
khal
kiwisolver
kmod
koji
krb5
@@ -1114,6 +1142,7 @@ libconfig
libcroco
libcryptui
libdatrie
libdazzle
libdmx
libdnf
libdrm
@@ -1177,6 +1206,7 @@ librepo
librsvg
librtlsdr
libsamplerate
libsass
libseccomp
libsecret
libsigc++
@@ -1255,6 +1285,7 @@ lzip
lzo
m4
make
makedepend
man-db
man-pages
mariadb
@@ -1289,6 +1320,7 @@ motd-update
motif
mozjs
mozjs38
mozjs52
mpc
mpfr
mpg123
@@ -1312,7 +1344,6 @@ nbconvert
nbformat
nbsphinx
ncurses
ncurses-compat
ndctl
ndg_httpsclient
neofetch
@@ -1381,6 +1412,7 @@ openvswitch
opus
opusfile
orc
orca
ordereddict
ostree
ovirt-guest-agent
@@ -1416,7 +1448,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
@@ -1432,7 +1466,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
@@ -1457,6 +1497,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
@@ -1469,6 +1510,7 @@ perl-Package-Stash
perl-Params-Validate
perl-Params-ValidationCompiler
perl-Path-Class
perl-Path-Tiny
perl-Role-Tiny
perl-Scope-Guard
perl-Specio
@@ -1476,10 +1518,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
@@ -1487,7 +1533,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
@@ -1637,6 +1685,7 @@ qtx11extras
qtxmlpatterns
quagga
quilt
ragel
randrproto
rdma-core
re2c
@@ -1655,6 +1704,7 @@ rng-tools
rope
rpcbind
rpm
rr
rsa
rsync
ruby
@@ -1665,6 +1715,7 @@ rxvt-unicode
s2tc
s3transfer
samba
sassc
satyr
sbc
sbsigntools
@@ -1727,6 +1778,7 @@ strace
subunit
sudo
sure
suricata
swig
swupd-client
swupd-overdue
@@ -1807,6 +1859,7 @@ util-linux
util-macros
uwsgi
v4l-utils
vala
valgrind
vcversioner
videoproto
@@ -1819,6 +1872,7 @@ virt-viewer
virtualenv
vlc
volume_key
vorbis-tools
vsqlite
vte
vulkan-sdk
@@ -1837,6 +1891,7 @@ wget
wheel
which
widgetsnbextension
wireless-regdb-master
woff2
wol
wpa_supplicant
@@ -1856,6 +1911,7 @@ xclip
xcmiscproto
xcursor-themes
xcursorgen
xdg-desktop-portal
xdg-user-dirs
xdg-user-dirs-gtk
xdg-utils
+1 -1
View File
@@ -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'