Compare commits

..

23 Commits

Author SHA1 Message Date
clrbuilder 921ac270fe Update packages file for version 28820
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-12 11:58:41 +00:00
clrbuilder f41acbdeb0 Update packages file for version 28810
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-11 19:36:11 +00:00
Patrick McCarty 83a461fe40 Print progress messages for install-local and install-debuginfo-local
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2019-04-11 10:59:21 -07:00
Patrick McCarty 6876f3d11e Skip debuginfo install if the required rpm does not exist
Some packages in the distro do not generate debuginfo subpackages, so
make sure to skip the debuginfo install in this situation.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2019-04-11 10:46:49 -07:00
clrbuilder 5a4dd4451a Update packages file for version 28800
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-11 15:27:28 +00:00
clrbuilder d48889eb29 Update packages file for version 28770
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-10 17:58:50 +00:00
clrbuilder b402f2bbdf Update packages file for version 28760
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-10 11:58:29 +00:00
clrbuilder 1fcaa4aea6 Update packages file for version 28740
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-09 11:58:30 +00:00
clrbuilder 71b927321f Update packages file for version 28730
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-09 02:59:16 +00:00
clrbuilder 40f17091a6 Update packages file for version 28720
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-08 17:59:02 +00:00
clrbuilder 3b062e1b45 Update packages file for version 28700
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-07 02:22:41 +00:00
clrbuilder 3c3fc1a16c Update packages file for version 28690
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-05 22:27:02 +00:00
clrbuilder 3c7aac6a8e Update packages file for version 28670
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-05 11:58:38 +00:00
Patrick McCarty baf555428f Update license list for SPDX 3.5
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2019-04-05 00:23:35 -07:00
clrbuilder 262d005c62 Update packages file for version 28660
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-04 18:20:29 +00:00
clrbuilder ceff8301a1 Update packages file for version 28650
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-04 11:58:41 +00:00
clrbuilder 8eb7264597 Update packages file for version 28630
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-03 11:58:45 +00:00
clrbuilder c10d558ee6 Update packages file for version 28600
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-01 17:59:44 +00:00
clrbuilder bd75d90fc7 Update packages file for version 28590
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-04-01 12:01:36 +00:00
clrbuilder 081c620f82 Update packages file for version 28560
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-03-29 11:58:42 +00:00
clrbuilder 7e017ee247 Update packages file for version 28540
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-03-28 11:59:08 +00:00
clrbuilder 5b43360fe8 Update packages file for version 28520
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-03-27 11:59:02 +00:00
clrbuilder eb8879f0f0 Update packages file for version 28510
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2019-03-26 17:59:36 +00:00
3 changed files with 127 additions and 9 deletions
+15 -7
View File
@@ -411,27 +411,35 @@ install:
#help install-debuginfo-local: Install locally built debuginfo RPM to
#help the automatic debuginfo cache location (/var/cache/debuginfo)
install-debuginfo-local:
@if [ -z "${DEBUGINFO_RPM}" ]; then \
echo "No debuginfo to install... skipping"; \
exit 0; \
fi; \
echo -n "Installing ${DEBUGINFO_RPM}... "; \
tmpdir=$$(mktemp -d); \
rpm2cpio ${DEBUGINFO_RPM} | ( cd $$tmpdir; cpio -i -d -u); \
rpm2cpio ${DEBUGINFO_RPM} | ( cd $$tmpdir; cpio -i -d -u 2> /dev/null); \
dest=/var/cache/debuginfo/lib; \
find $$tmpdir/usr/lib/debug/ -mindepth 1 -maxdepth 1 | while read -r d; do \
find $$tmpdir/usr/lib/debug/ -mindepth 1 -maxdepth 1 2> /dev/null | 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 \
find $$tmpdir/usr/src/debug/ -mindepth 1 -maxdepth 1 2> /dev/null | while read -r d; do \
sudo chown -R dbginfo:dbginfo "$$d"; \
sudo cp -a "$$d" $$dest/; \
done; \
sudo rm -rf $$tmpdir
sudo rm -rf $$tmpdir; \
echo "done"
#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); \
@for r in $(filter-out ${DEBUGINFO_RPM},${RPMS}); do \
echo -n "Installing $$r... "; \
rpm2cpio $$r | (cd /; sudo cpio -i -d -u 2> /dev/null); \
echo "done"; \
done
$(MAKE) install-debuginfo-local
@$(MAKE) -s install-debuginfo-local
#help install-mock: Install locally built RPMs to the mock rootcache
#help filesystem. This command is usually used with "make shell".
+5
View File
@@ -99,6 +99,8 @@ CECILL-2.0
CECILL-2.1
CECILL-B
CECILL-C
CERN-OHL-1.1
CERN-OHL-1.2
CNRI-Jython
CNRI-Python
CNRI-Python-GPL-Compatible
@@ -183,6 +185,7 @@ Info-ZIP
Intel
Intel-ACPI
Interbase-1.0
JPNIC
JSON
JasPer-2.0
LAL-1.2
@@ -325,6 +328,7 @@ Spencer-94
Spencer-99
StandardML-NJ
SugarCRM-1.1.3
TAPR-OHL-1.0
TCL
TCP-wrappers
TMate
@@ -373,6 +377,7 @@ eGenix
gSOAP-1.3b
gnuplot
iMatix
libpng-2.0
libtiff
mpich2
psfrag
+107 -2
View File
@@ -22,6 +22,7 @@ FreeCAD
FreeRDP
GConf
GitPython
GtkD
HeapDict
ImageMagick
JAGS
@@ -42,6 +43,7 @@ Markdown
MarkupSafe
ModemManager
MonkeyType
MuseScore
MySQL-python
NetworkManager
NetworkManager-openconnect
@@ -948,6 +950,7 @@ akonadiconsole
akregator
alabaster
alembic
alsa-firmware
alsa-lib
alsa-plugins
alsa-utils
@@ -1077,6 +1080,7 @@ boto
boto3
botocore
bovo
breathe
breeze
breeze-gtk
breeze-icons
@@ -1104,6 +1108,7 @@ buildreq-kernel
buildreq-make
buildreq-meson
buildreq-mvn
buildreq-php
buildreq-qmake
buildreq-scons
bundle-chroot-builder
@@ -1158,6 +1163,7 @@ clear-config-management
clear-font
click
click-datetime
click-log
cliff
clinfo
cln
@@ -1252,6 +1258,7 @@ compat-icu4c-soname61
compat-ilmbase-soname23
compat-intel-gmmlib-soname1
compat-ipset-soname10
compat-ldc-soname84
compat-libgit2-soname27
compat-libical-soname2
compat-libidn-soname11
@@ -1262,6 +1269,7 @@ compat-libwebp-soname6
compat-llvm-soname4
compat-llvm-soname5
compat-llvm-soname6
compat-llvm-soname7
compat-mariadb-soname18
compat-mpfr-soname4
compat-opencv-soname32
@@ -1280,6 +1288,7 @@ compat-readline-soname5
compat-readline-soname7
component
compute-image-packages
conda
configobj
configparser
confuse
@@ -1349,6 +1358,81 @@ decorator
defusedxml
dejagnu
dejavu-fonts
deprecated-Babel
deprecated-Cython
deprecated-Jinja2
deprecated-Mako
deprecated-Markdown
deprecated-MarkupSafe
deprecated-PyYAML
deprecated-Pygments
deprecated-Sphinx
deprecated-WebOb
deprecated-Werkzeug
deprecated-Whoosh
deprecated-alabaster
deprecated-asn1crypto
deprecated-attrs
deprecated-boto3
deprecated-botocore
deprecated-certifi
deprecated-cffi
deprecated-chardet
deprecated-colorama
deprecated-configparser
deprecated-contextlib2
deprecated-coverage
deprecated-cryptography
deprecated-docutils
deprecated-funcsigs
deprecated-futures
deprecated-glances
deprecated-html5lib
deprecated-hypothesis
deprecated-idna
deprecated-imagesize
deprecated-ipaddress
deprecated-isort
deprecated-jmespath
deprecated-linecache2
deprecated-mido
deprecated-nose
deprecated-numpy
deprecated-ordereddict
deprecated-pexpect
deprecated-pluggy
deprecated-psycopg2
deprecated-py
deprecated-pyOpenSSL
deprecated-pyasn1
deprecated-pycairo
deprecated-pycparser
deprecated-pycurl
deprecated-pyflakes
deprecated-pyparsing
deprecated-python-dldt
deprecated-python-memcached
deprecated-python-mock
deprecated-python-multilib
deprecated-pytz
deprecated-requests
deprecated-s3transfer
deprecated-setproctitle
deprecated-setuptools_scm
deprecated-simplejson
deprecated-six
deprecated-snowballstemmer
deprecated-sphinx_rtd_theme
deprecated-sphinxcontrib-websupport
deprecated-testscenarios
deprecated-traceback2
deprecated-typing
deprecated-unittest2
deprecated-urllib3
deprecated-warlock
deprecated-webcolors
deprecated-zope.testing
deprecated-zope.testrunner
deprecation
desktop-file-utils
desktop-icons
@@ -1448,6 +1532,7 @@ envs
eog
eog-plugins
epm
epydoc
eternalegypt
ethtool
eventlet
@@ -1691,6 +1776,7 @@ gtkmm2
gtkmm3
gtksourceview
gtkspell3
gtkwave
guile
gupnp-av
gutenprint
@@ -1757,6 +1843,7 @@ iftop
igt-gpu-tools
ilmbase
image
imageio
imagesize
imapfilter
imlib2
@@ -1769,6 +1856,7 @@ init-rdahead
inkscape
inotify-tools
intel-cmt-cat
intel-compute-runtime
intel-gmmlib
intel-graphics-compiler
intel-hybrid-driver
@@ -2265,6 +2353,7 @@ libqmi
libqtxdg
libqxp
librabbitmq
libreoffice
librepo
librevenge
librsvg
@@ -2355,15 +2444,14 @@ linux-hyperv
linux-hyperv-lts
linux-iot-lts2017-preempt-rt
linux-iot-lts2018
linux-iot-lts2018-preempt-rt
linux-kata
linux-kvm
linux-libc-headers
linux-lts
linux-lts2017
linux-lts2018
linux-networktest
linux-oracle
linux-pk414-preempt-rt
linux-preempt-rt
linux-steam-integration
linux-tools
@@ -2526,6 +2614,7 @@ ncurses
ncurses-compat
ndctl
ndg_httpsclient
ndpi
neofetch
neomutt
neon
@@ -2576,6 +2665,7 @@ nss
nss-altfiles
nss-pam-ldapd
ntfs-3g
ntl
ntlm-auth
ntp
ntplib
@@ -2609,6 +2699,7 @@ open-vm-tools
openQA
openal-soft
openblas
opencl-clang
openconnect
opencv
openexr
@@ -2639,6 +2730,7 @@ os-autoinst
os-brick
os-client-config
os-ken
os-resource-classes
os-service-types
os-testr
os-traits
@@ -2708,6 +2800,7 @@ parted
pass
passlib
patch
patchelf
patchutils
pathlib
pathlib2
@@ -2720,6 +2813,7 @@ pciutils
pcmanfm-qt
pcre
pcre2
pcsc-lite
pdns
pdns-recursor
pecan
@@ -2750,6 +2844,7 @@ perl-Audio-FLAC-Header
perl-Audio-Musepack
perl-Audio-Scan
perl-Audio-Wav
perl-Authen-SASL
perl-B-Hooks-EndOfScope
perl-B-Hooks-OP-Check
perl-B-Keywords
@@ -3425,6 +3520,7 @@ ply
plzip
pmdk
polkit
polkit-kde-agent
polkit-qt
poppler
poppler-data-clr-rename
@@ -3485,6 +3581,7 @@ pycadf
pycairo
pycam
pycodestyle
pycosat
pycparser
pycrypto
pycurl
@@ -3510,6 +3607,7 @@ pyliblzma
pylint
pymemcache
pymongo
pyotherside
pyotp
pypandoc
pyparsing
@@ -3717,6 +3815,7 @@ rsa
rsync
rsyslog
rt-tests
rtkit
rtslib-fb
rttr
ruamel-yaml
@@ -3808,12 +3907,18 @@ speexdsp
sphinx-feature-classification
sphinx_rtd_theme
sphinxcontrib-apidoc
sphinxcontrib-applehelp
sphinxcontrib-bibtex
sphinxcontrib-blockdiag
sphinxcontrib-devhelp
sphinxcontrib-htmlhelp
sphinxcontrib-httpdomain
sphinxcontrib-jsmath
sphinxcontrib-newsfeed
sphinxcontrib-programoutput
sphinxcontrib-qthelp
sphinxcontrib-seqdiag
sphinxcontrib-serializinghtml
sphinxcontrib-spelling
sphinxcontrib-trio
sphinxcontrib-websupport