Compare commits

..

8 Commits

Author SHA1 Message Date
clrbuilder 97edcccc6f Update packages file for version 32550
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2020-03-06 06:09:30 +00:00
clrbuilder 16fb031192 Update packages file for version 32540
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2020-03-05 06:10:39 +00:00
clrbuilder 46d98726d5 Update packages file for version 32530
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2020-03-04 06:11:22 +00:00
Arjan van de Ven 0fa3b3812c reduce more spec file noise 2020-03-03 17:27:52 +00:00
Arjan van de Ven c6ae76c720 reduce noise in review some more 2020-03-03 17:21:40 +00:00
Arjan van de Ven b1cfa8f828 avoid ehx poisoning 2020-03-03 17:20:50 +00:00
Arjan van de Ven 2f03d06fc4 also drop .asc files from the review... avoid hex poisoning 2020-03-03 17:18:51 +00:00
clrbuilder 514dbd5f33 Update packages file for version 32520
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2020-03-03 08:11:55 +00:00
2 changed files with 38 additions and 1 deletions
+14 -1
View File
@@ -187,6 +187,7 @@ R-Rcpp
R-RcppArmadillo
R-RcppEigen
R-RcppGSL
R-RcppParallel
R-RcppProgress
R-RcppRoll
R-RcppZiggurat
@@ -1300,6 +1301,7 @@ clutter
clutter-gst
clutter-gtk
cmake
cmarkgfm
cmd2
cmocka
cmrt
@@ -2473,6 +2475,8 @@ libnumbertext
liboauth
libodfgen
libogg
libopenshot
libopenshot-audio
libopenzwave
liborcus
libosinfo
@@ -3579,6 +3583,7 @@ openjdk13
openldap
openmpi
openscad
openshot-qt
opensm
openssh
openssl
@@ -4229,6 +4234,7 @@ perl-Params-ValidationCompiler
perl-Parse-EDID
perl-Parse-ExuberantCTags
perl-Parse-RecDescent
perl-Parse-Yapp
perl-Path-Class
perl-Path-Tiny
perl-Pegex
@@ -4300,6 +4306,7 @@ perl-String-Escape
perl-String-Expand
perl-String-Format
perl-String-Random
perl-String-ShellQuote
perl-String-Similarity
perl-String-Util
perl-Struct-Dumb
@@ -4571,6 +4578,7 @@ php-xxtea
php-yaml
php-yar
php-zip
php-zmq
pickleshare
picmi
picocom
@@ -4591,6 +4599,7 @@ pipreqs
pixman
pkcs11-helper
pkg-config
pkginfo
plasma-browser-integration
plasma-desktop
plasma-discover
@@ -4666,6 +4675,7 @@ pwgen
py
pyDesktop3
pyOpenSSL
pyRFC3339
pyScss
pyaes
pyalsaaudio
@@ -4712,7 +4722,6 @@ pyperclip
pypowervm
pyquery
pyreadline
pyrfc3339
pyroma
pyroute2
pyrsistent
@@ -4724,7 +4733,9 @@ pysnmp
pysubnettree
pytest
pytest-asyncio
pytest-cache
pytest-cov
pytest-flake8
pytest-forked
pytest-localserver
pytest-randomly
@@ -4871,6 +4882,7 @@ rdma-core
re2
re2c
readline
readme_renderer
rebootmgr
recode
recommonmark
@@ -5210,6 +5222,7 @@ traitlets
tree
trollius
trustme
twine
typed_ast
typing
typing_extensions
+24
View File
@@ -102,6 +102,22 @@ def zap_entire_file_end(filename):
if file.endswith(filename):
files.remove(file)
def zap_line_in_file_substring(filename, match):
global header
global files
global files_chunks
global files_header
for file in files:
if file.endswith(filename):
for chunk in files_chunks[file]:
to_delete = list()
for line in chunk:
if match in line:
to_delete.append(line)
for line in to_delete:
chunk.remove(line)
def zap_line_in_file(filename, match):
global header
global files
@@ -209,6 +225,11 @@ def main():
zap_entire_file_end("xz.sig")
zap_entire_file_end("gz.sig")
zap_entire_file_end("bz2.sig")
zap_entire_file_end("xz.asc")
zap_entire_file_end("gz.asc")
zap_entire_file_end("bz2.asc")
zap_entire_file_end(".pkey")
zap_line_in_file("b/testresults", "Total : 0")
zap_line_in_file("b/testresults", "Pass : 0")
@@ -273,6 +294,7 @@ def main():
zap_line_in_file("b/options.conf", "archives = ")
zap_line_in_file("b/options.conf", "giturl = ")
zap_line_in_file("b/options.conf", "url = ")
zap_line_in_file("b/options.conf", "[package]")
zap_line_in_file("b/options.conf", "")
zap_line_in_file("b/options.conf", "[autospec]")
@@ -358,7 +380,9 @@ def main():
zap_entire_file("b/whatrequires")
zap_entire_file("b/versions")
zap_entire_file("b/.gitignore")
zap_line_in_file_substring(".spec", "%{buildroot}/usr/share/package-licenses") # version number change in license copy
zap_empty_chunks()
print_all()