mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
70 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 025c9a74f1 | |||
| b03db840a6 | |||
| 59dfc2236f | |||
| e61ebaafc6 | |||
| 4bcceb402e | |||
| 5e15b47efc | |||
| 043265171f | |||
| 982d58e0e6 | |||
| accf578c02 | |||
| efe2b2bccf | |||
| 9f77cbb6e3 | |||
| bd6c14938b | |||
| 32729558d9 | |||
| b2ad8dbda8 | |||
| e545190de3 | |||
| 9921115897 | |||
| 8d5f8e37c5 | |||
| 6bc5718c25 | |||
| a21156767e | |||
| 9dd5bb895b | |||
| 67b7ef2bf4 | |||
| 6ad56934fd | |||
| 7b08135720 | |||
| 168c9b8606 | |||
| 3ff4181689 | |||
| a581ac8fbf | |||
| 601ca9e0fc | |||
| 8848658fcf | |||
| b76a7bc7f8 | |||
| f8f9619eec | |||
| b7b8774581 | |||
| b3618cc43c | |||
| 921ac270fe | |||
| f41acbdeb0 | |||
| 83a461fe40 | |||
| 6876f3d11e | |||
| 5a4dd4451a | |||
| d48889eb29 | |||
| b402f2bbdf | |||
| 1fcaa4aea6 | |||
| 71b927321f | |||
| 40f17091a6 | |||
| 3b062e1b45 | |||
| 3c3fc1a16c | |||
| 3c7aac6a8e | |||
| baf555428f | |||
| 262d005c62 | |||
| ceff8301a1 | |||
| 8eb7264597 | |||
| c10d558ee6 | |||
| bd75d90fc7 | |||
| 081c620f82 | |||
| 7e017ee247 | |||
| 5b43360fe8 | |||
| eb8879f0f0 | |||
| f18ba9060d | |||
| 9fc1471023 | |||
| 9885cdbf9b | |||
| ce12c754ba | |||
| b363871adf | |||
| c028ea0072 | |||
| 7dc414433f | |||
| 50f18a0146 | |||
| 51c26d9a01 | |||
| c143f7ee95 | |||
| 81bd7f5e54 | |||
| 5d8e976a2a | |||
| 7d624ab7ae | |||
| ba14c4e50f | |||
| 34fb007895 |
+27
-10
@@ -70,10 +70,9 @@ proper: repodel
|
||||
mockclean:
|
||||
$(MOCK) --clean --scrub=all
|
||||
|
||||
#help mockproper: Clean mock chroot and cache directories for this package.
|
||||
#help mockproper: Clean mock chroot
|
||||
mockproper:
|
||||
$(MOCK) --clean --scrub=all --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) --clean --scrub=chroot --uniqueext=$(PKG_NAME)
|
||||
$(MOCK) --clean --uniqueext=$(PKG_NAME)
|
||||
|
||||
configemail:
|
||||
@test -d .git || git init
|
||||
@@ -187,6 +186,8 @@ autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
bash update_changelog.sh ; \
|
||||
git commit --amend --no-edit Change* ; \
|
||||
fi
|
||||
git diff | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ;
|
||||
git diff | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py ;
|
||||
|
||||
#help autospecnogit: Runs autospec, but does not create a commit
|
||||
autospecnogit:
|
||||
@@ -412,27 +413,43 @@ 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; \
|
||||
find $$tmpdir/usr/share/debug/ -mindepth 1 -maxdepth 1 -regextype awk -regex '.*/(.build-id|boot|lib|sbin|usr)$$' 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
|
||||
find $$tmpdir/usr/share/debug/src/ -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; \
|
||||
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".
|
||||
|
||||
+6
-2
@@ -226,8 +226,12 @@ autospecnew: preautospecnew-checks localreponotice
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||
$(URL); \
|
||||
[ $$? -eq 0 ] && $(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||
if [ $$? -eq 0 ]; then \
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||
python3 $(TOPLVL)/projects/common/patchfilter.py <(git -C $(TOPLVL)/packages/$(NAME) show) > $(TOPLVL)/packages/$(NAME)/for-review.txt; \
|
||||
python3 $(TOPLVL)/projects/common/patchfilter.py <(git -C $(TOPLVL)/packages/$(NAME) show); \
|
||||
fi; \
|
||||
else \
|
||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||
exit 1; \
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -58,6 +60,7 @@ PasteDeploy
|
||||
Pillow
|
||||
Pint
|
||||
PyDispatcher
|
||||
PyICU
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyNaCl
|
||||
@@ -70,6 +73,7 @@ PyYAML
|
||||
Pygments
|
||||
Pyro4
|
||||
QGIS
|
||||
Qogir-theme
|
||||
QtAwesome
|
||||
QtPy
|
||||
R
|
||||
@@ -245,6 +249,7 @@ R-brglm
|
||||
R-bridgesampling
|
||||
R-brms
|
||||
R-broom
|
||||
R-bvls
|
||||
R-ca
|
||||
R-caTools
|
||||
R-calibrate
|
||||
@@ -278,6 +283,7 @@ R-config
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
R-corrgram
|
||||
R-corrplot
|
||||
R-cowplot
|
||||
R-crayon
|
||||
@@ -291,6 +297,7 @@ R-data.table
|
||||
R-date
|
||||
R-dbarts
|
||||
R-dbplyr
|
||||
R-dcurver
|
||||
R-ddalpha
|
||||
R-deSolve
|
||||
R-debugme
|
||||
@@ -317,6 +324,7 @@ R-dotCall64
|
||||
R-downloader
|
||||
R-dplyr
|
||||
R-drc
|
||||
R-dtplyr
|
||||
R-dtw
|
||||
R-dygraphs
|
||||
R-dynlm
|
||||
@@ -387,6 +395,7 @@ R-fossil
|
||||
R-fpc
|
||||
R-fracdiff
|
||||
R-fs
|
||||
R-fst
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
@@ -430,6 +439,7 @@ R-haplo.stats
|
||||
R-haven
|
||||
R-hdrcde
|
||||
R-here
|
||||
R-hexView
|
||||
R-hexbin
|
||||
R-highlight
|
||||
R-highr
|
||||
@@ -450,6 +460,7 @@ R-ineq
|
||||
R-ini
|
||||
R-inline
|
||||
R-inum
|
||||
R-invgamma
|
||||
R-ipred
|
||||
R-irlba
|
||||
R-iterators
|
||||
@@ -483,6 +494,7 @@ R-leaps
|
||||
R-lfe
|
||||
R-lhs
|
||||
R-libcoin
|
||||
R-lintr
|
||||
R-listenv
|
||||
R-listviewer
|
||||
R-lle
|
||||
@@ -496,6 +508,7 @@ R-lpSolve
|
||||
R-lsei
|
||||
R-lsmeans
|
||||
R-lubridate
|
||||
R-lwgeom
|
||||
R-mFilter
|
||||
R-magic
|
||||
R-magick
|
||||
@@ -522,6 +535,7 @@ R-mime
|
||||
R-miniUI
|
||||
R-minpack.lm
|
||||
R-minqa
|
||||
R-mirt
|
||||
R-misc3d
|
||||
R-miscTools
|
||||
R-mitools
|
||||
@@ -552,6 +566,7 @@ R-network
|
||||
R-neuralnet
|
||||
R-nleqslv
|
||||
R-nloptr
|
||||
R-nnls
|
||||
R-nortest
|
||||
R-npsurv
|
||||
R-numDeriv
|
||||
@@ -565,6 +580,7 @@ R-optparse
|
||||
R-ordinal
|
||||
R-packrat
|
||||
R-pamr
|
||||
R-parsedate
|
||||
R-partitions
|
||||
R-party
|
||||
R-partykit
|
||||
@@ -614,6 +630,7 @@ R-prettyunits
|
||||
R-princurve
|
||||
R-processx
|
||||
R-prodlim
|
||||
R-profdpm
|
||||
R-profileModel
|
||||
R-progress
|
||||
R-promises
|
||||
@@ -648,8 +665,11 @@ R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-rbenchmark
|
||||
R-rcmdcheck
|
||||
R-reactR
|
||||
R-reactlog
|
||||
R-readODS
|
||||
R-readr
|
||||
R-readstata13
|
||||
R-readxl
|
||||
@@ -666,17 +686,20 @@ R-reprex
|
||||
R-reshape
|
||||
R-reshape2
|
||||
R-reticulate
|
||||
R-rex
|
||||
R-rgenoud
|
||||
R-rgeos
|
||||
R-rgl
|
||||
R-rglwidget
|
||||
R-rhandsontable
|
||||
R-rhub
|
||||
R-rio
|
||||
R-ritis
|
||||
R-rjags
|
||||
R-rjstat
|
||||
R-rlang
|
||||
R-rmarkdown
|
||||
R-rmatio
|
||||
R-rms
|
||||
R-rmutil
|
||||
R-rncl
|
||||
@@ -698,6 +721,7 @@ R-rsdmx
|
||||
R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstudio
|
||||
R-rstudioapi
|
||||
R-rsvg
|
||||
R-runjags
|
||||
@@ -757,6 +781,7 @@ R-startupmsg
|
||||
R-statip
|
||||
R-statmod
|
||||
R-statnet.common
|
||||
R-stringdist
|
||||
R-stringi
|
||||
R-stringr
|
||||
R-strucchange
|
||||
@@ -812,6 +837,7 @@ R-varImp
|
||||
R-vcd
|
||||
R-vcdExtra
|
||||
R-vcr
|
||||
R-vctrs
|
||||
R-vegan
|
||||
R-vioplot
|
||||
R-viridis
|
||||
@@ -849,6 +875,7 @@ SDL_image
|
||||
SDL_mixer
|
||||
SDL_net
|
||||
SDL_ttf
|
||||
SFML
|
||||
SPIRV-Headers
|
||||
SPIRV-Tools
|
||||
SQLAlchemy
|
||||
@@ -936,6 +963,7 @@ akonadiconsole
|
||||
akregator
|
||||
alabaster
|
||||
alembic
|
||||
alsa-firmware
|
||||
alsa-lib
|
||||
alsa-plugins
|
||||
alsa-utils
|
||||
@@ -990,6 +1018,8 @@ atomicwrites
|
||||
attica
|
||||
attr
|
||||
attrs
|
||||
audacious
|
||||
audacious-plugins
|
||||
audiofile
|
||||
audisp-json
|
||||
audit
|
||||
@@ -1038,6 +1068,7 @@ bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
beignet
|
||||
bijiben
|
||||
bind-utils
|
||||
binutils
|
||||
binwalk
|
||||
@@ -1064,16 +1095,19 @@ boto
|
||||
boto3
|
||||
botocore
|
||||
bovo
|
||||
breathe
|
||||
breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
bridge-utils
|
||||
bro
|
||||
bro-af_packet-plugin
|
||||
brotli
|
||||
brotlipy
|
||||
bsdiff
|
||||
bspwm
|
||||
btrfs-progs
|
||||
bubblewrap
|
||||
buildreq-R
|
||||
buildreq-cmake
|
||||
buildreq-configure
|
||||
@@ -1089,6 +1123,7 @@ buildreq-kernel
|
||||
buildreq-make
|
||||
buildreq-meson
|
||||
buildreq-mvn
|
||||
buildreq-php
|
||||
buildreq-qmake
|
||||
buildreq-scons
|
||||
bundle-chroot-builder
|
||||
@@ -1105,7 +1140,9 @@ cachetools
|
||||
caffe
|
||||
cairo
|
||||
cairomm
|
||||
calc
|
||||
calendarsupport
|
||||
can-utils
|
||||
cantarell-fonts
|
||||
cantata
|
||||
cantor
|
||||
@@ -1118,6 +1155,7 @@ catch2
|
||||
catkin
|
||||
catkin_pkg
|
||||
ccache
|
||||
ccid
|
||||
ceilometer
|
||||
ceph
|
||||
ceph-deploy
|
||||
@@ -1142,6 +1180,7 @@ clear-config-management
|
||||
clear-font
|
||||
click
|
||||
click-datetime
|
||||
click-log
|
||||
cliff
|
||||
clinfo
|
||||
cln
|
||||
@@ -1152,6 +1191,7 @@ clr-R-helpers
|
||||
clr-avx-tools
|
||||
clr-boot-manager
|
||||
clr-bundle-icons
|
||||
clr-bundle-screenshots
|
||||
clr-bundles
|
||||
clr-debug-info
|
||||
clr-desktop-defaults
|
||||
@@ -1162,6 +1202,8 @@ clr-ignore-mod-sig
|
||||
clr-init
|
||||
clr-installer
|
||||
clr-man-pages
|
||||
clr-network-troubleshooter
|
||||
clr-one-shot-updates
|
||||
clr-power-tweaks
|
||||
clr-python-timestamp
|
||||
clr-pyversion-strip
|
||||
@@ -1184,6 +1226,7 @@ cnf
|
||||
cni
|
||||
cni-plugins
|
||||
cockpit
|
||||
codec2
|
||||
codecov
|
||||
cogl
|
||||
coinmp
|
||||
@@ -1210,12 +1253,14 @@ collectl
|
||||
colorama
|
||||
colord
|
||||
colord-gtk
|
||||
columbiad
|
||||
comedilib
|
||||
comfortaa-fonts
|
||||
commonmark
|
||||
compat-SDL2-soname1
|
||||
compat-cryptsetup-soname4
|
||||
compat-curl-gnutls-soname4
|
||||
compat-double-conversion-soname1
|
||||
compat-efivar-soname0
|
||||
compat-enchant-soname1
|
||||
compat-exiv2-soname26
|
||||
@@ -1224,6 +1269,7 @@ compat-gegl
|
||||
compat-gegl-0.3
|
||||
compat-glew-soname1
|
||||
compat-gmime-26
|
||||
compat-gspell-soname1
|
||||
compat-gtksourceview-soname3
|
||||
compat-guile-soname20
|
||||
compat-hdf5-soname10
|
||||
@@ -1233,6 +1279,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
|
||||
@@ -1243,6 +1290,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
|
||||
@@ -1253,6 +1301,7 @@ compat-openssl-soname-10
|
||||
compat-poppler-soname78
|
||||
compat-poppler-soname82
|
||||
compat-poppler-soname83
|
||||
compat-poppler-soname86
|
||||
compat-protobuf-soname14
|
||||
compat-protobuf-soname15
|
||||
compat-python36
|
||||
@@ -1261,6 +1310,7 @@ compat-readline-soname5
|
||||
compat-readline-soname7
|
||||
component
|
||||
compute-image-packages
|
||||
conda
|
||||
configobj
|
||||
configparser
|
||||
confuse
|
||||
@@ -1281,6 +1331,7 @@ cpio
|
||||
cppcheck
|
||||
cpprestsdk
|
||||
cppunit
|
||||
cppzmq
|
||||
cpuid
|
||||
cpuloadgen
|
||||
cracklib
|
||||
@@ -1307,6 +1358,7 @@ cxxfilt
|
||||
cycler
|
||||
cyrus-sasl
|
||||
dapl
|
||||
darkflow
|
||||
darktable
|
||||
dash-to-dock
|
||||
dask
|
||||
@@ -1329,6 +1381,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
|
||||
@@ -1428,8 +1555,10 @@ envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
epydoc
|
||||
eternalegypt
|
||||
ethtool
|
||||
etr
|
||||
eventlet
|
||||
eventviews
|
||||
evince
|
||||
@@ -1445,6 +1574,7 @@ expect
|
||||
extra-cmake-modules
|
||||
extras
|
||||
f2fs-tools
|
||||
faas-cli
|
||||
faba-icon-theme
|
||||
fakeroot
|
||||
fann
|
||||
@@ -1452,11 +1582,13 @@ fann2
|
||||
farstream
|
||||
fasteners
|
||||
fastimport
|
||||
fastnumbers
|
||||
fcgi
|
||||
fcoe-utils
|
||||
fdm_materials
|
||||
feh
|
||||
fetchmail
|
||||
ffmpegthumbs
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
@@ -1540,6 +1672,7 @@ gexiv2
|
||||
gfbgraph
|
||||
gflags
|
||||
gftp
|
||||
ghc
|
||||
ghostscript
|
||||
gimp
|
||||
git
|
||||
@@ -1652,6 +1785,7 @@ grpcio
|
||||
grub
|
||||
gsettings-desktop-schemas
|
||||
gsl
|
||||
gsm
|
||||
gsound
|
||||
gspell
|
||||
gst-plugins-bad
|
||||
@@ -1671,6 +1805,7 @@ gtkmm2
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
gtkspell3
|
||||
gtkwave
|
||||
guile
|
||||
gupnp-av
|
||||
gutenprint
|
||||
@@ -1686,7 +1821,9 @@ hammock
|
||||
haproxy
|
||||
hardlink
|
||||
harfbuzz
|
||||
haskell-random
|
||||
hdf5
|
||||
hdmedians
|
||||
hdparm
|
||||
heat
|
||||
helloworld
|
||||
@@ -1698,6 +1835,7 @@ hicolor-icon-theme
|
||||
hiredis
|
||||
hold
|
||||
home-assistant
|
||||
home-assistant-frontend
|
||||
horizon
|
||||
horovod
|
||||
hostname
|
||||
@@ -1737,6 +1875,7 @@ iftop
|
||||
igt-gpu-tools
|
||||
ilmbase
|
||||
image
|
||||
imageio
|
||||
imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
@@ -1749,6 +1888,7 @@ init-rdahead
|
||||
inkscape
|
||||
inotify-tools
|
||||
intel-cmt-cat
|
||||
intel-compute-runtime
|
||||
intel-gmmlib
|
||||
intel-graphics-compiler
|
||||
intel-hybrid-driver
|
||||
@@ -1814,6 +1954,7 @@ jsonpatch
|
||||
jsonpath-rw
|
||||
jsonpath-rw-ext
|
||||
jsonpointer
|
||||
jsonrpc-glib
|
||||
jsonschema
|
||||
jupyter
|
||||
jupyter-nbgallery
|
||||
@@ -1830,6 +1971,7 @@ kactivitymanagerd
|
||||
kafka-dep
|
||||
kalarm
|
||||
kalarmcal
|
||||
kalgebra
|
||||
kamera
|
||||
kanagram
|
||||
kapidox
|
||||
@@ -1877,6 +2019,7 @@ kde-dev-utils
|
||||
kde-gtk-config
|
||||
kdebugsettings
|
||||
kdeclarative
|
||||
kdeconnect-kde
|
||||
kdecoration
|
||||
kded
|
||||
kdeedu-data
|
||||
@@ -1921,6 +2064,7 @@ kgeography
|
||||
kget
|
||||
kglobalaccel
|
||||
kgoldrunner
|
||||
kgpg
|
||||
kguiaddons
|
||||
khal
|
||||
khangman
|
||||
@@ -2029,7 +2173,13 @@ ktimer
|
||||
ktnef
|
||||
ktp-approver
|
||||
ktp-common-internals
|
||||
ktp-contact-list
|
||||
ktp-contact-runner
|
||||
ktp-desktop-applets
|
||||
ktp-filetransfer-handler
|
||||
ktp-kded-module
|
||||
ktp-send-file
|
||||
ktp-text-ui
|
||||
ktuberling
|
||||
kturtle
|
||||
kubernetes
|
||||
@@ -2058,6 +2208,7 @@ lcov
|
||||
ldacBT
|
||||
ldap3
|
||||
ldb
|
||||
ldc
|
||||
ledmon
|
||||
lensfun
|
||||
less
|
||||
@@ -2164,6 +2315,7 @@ libgtop
|
||||
libgudev
|
||||
libgusb
|
||||
libgweather
|
||||
libhandy
|
||||
libical
|
||||
libidn
|
||||
libidn2
|
||||
@@ -2187,6 +2339,7 @@ libkipi
|
||||
libkleo
|
||||
libkmahjongg
|
||||
libkomparediff2
|
||||
libksane
|
||||
libksba
|
||||
libkscreen
|
||||
libksieve
|
||||
@@ -2242,6 +2395,7 @@ libqmi
|
||||
libqtxdg
|
||||
libqxp
|
||||
librabbitmq
|
||||
libreoffice
|
||||
librepo
|
||||
librevenge
|
||||
librsvg
|
||||
@@ -2315,6 +2469,7 @@ libxml2-legacy
|
||||
libxslt
|
||||
libyami
|
||||
libyami-utils
|
||||
libzapojit
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
@@ -2325,20 +2480,21 @@ links
|
||||
linux
|
||||
linux-aws
|
||||
linux-firmware
|
||||
linux-firmware-ipu
|
||||
linux-gce
|
||||
linux-hyperv
|
||||
linux-hyperv-lts
|
||||
linux-iot-lts2017-preempt-rt
|
||||
linux-iot-lts2018
|
||||
linux-iot-lts2018-preempt-rt
|
||||
linux-iot-lts2019
|
||||
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
|
||||
@@ -2351,6 +2507,7 @@ lm-sensors
|
||||
lmdb
|
||||
locket
|
||||
locustio
|
||||
log4cpp
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
@@ -2461,6 +2618,7 @@ mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpmath
|
||||
mpv
|
||||
mraa
|
||||
msgpack
|
||||
msm
|
||||
@@ -2488,10 +2646,12 @@ mycroft-core
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mypy_extensions
|
||||
mysqltcl
|
||||
mythes
|
||||
nagios-plugins
|
||||
nano
|
||||
nasm
|
||||
natsort
|
||||
nautilus
|
||||
nbconvert
|
||||
nbformat
|
||||
@@ -2501,6 +2661,7 @@ ncurses
|
||||
ncurses-compat
|
||||
ndctl
|
||||
ndg_httpsclient
|
||||
ndpi
|
||||
neofetch
|
||||
neomutt
|
||||
neon
|
||||
@@ -2525,6 +2686,7 @@ nfs4-acl-tools
|
||||
nftables
|
||||
nghttp2
|
||||
nginx
|
||||
nginx-mainline
|
||||
nicstat
|
||||
ninja
|
||||
nload
|
||||
@@ -2538,6 +2700,7 @@ nose-cover3
|
||||
nose-parameterized
|
||||
nosexcover
|
||||
nosync
|
||||
not-ffmpeg
|
||||
notebook
|
||||
notmuch
|
||||
noto-cjk
|
||||
@@ -2551,6 +2714,7 @@ nss
|
||||
nss-altfiles
|
||||
nss-pam-ldapd
|
||||
ntfs-3g
|
||||
ntl
|
||||
ntlm-auth
|
||||
ntp
|
||||
ntplib
|
||||
@@ -2584,6 +2748,7 @@ open-vm-tools
|
||||
openQA
|
||||
openal-soft
|
||||
openblas
|
||||
opencl-clang
|
||||
openconnect
|
||||
opencv
|
||||
openexr
|
||||
@@ -2614,6 +2779,7 @@ os-autoinst
|
||||
os-brick
|
||||
os-client-config
|
||||
os-ken
|
||||
os-resource-classes
|
||||
os-service-types
|
||||
os-testr
|
||||
os-traits
|
||||
@@ -2656,7 +2822,6 @@ oxygen-icons5
|
||||
p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacmanfm-qt
|
||||
pacrunner
|
||||
padaos
|
||||
padatious
|
||||
@@ -2684,6 +2849,7 @@ parted
|
||||
pass
|
||||
passlib
|
||||
patch
|
||||
patchelf
|
||||
patchutils
|
||||
pathlib
|
||||
pathlib2
|
||||
@@ -2693,8 +2859,10 @@ pbr
|
||||
pbr-legacy
|
||||
pbzip2
|
||||
pciutils
|
||||
pcmanfm-qt
|
||||
pcre
|
||||
pcre2
|
||||
pcsc-lite
|
||||
pdns
|
||||
pdns-recursor
|
||||
pecan
|
||||
@@ -2725,6 +2893,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
|
||||
@@ -2830,6 +2999,7 @@ perl-Data-Page
|
||||
perl-Data-Password
|
||||
perl-Data-Printer
|
||||
perl-Data-Random
|
||||
perl-Data-Section
|
||||
perl-Data-Serializer
|
||||
perl-Data-Structure-Util
|
||||
perl-Data-Uniqid
|
||||
@@ -3084,6 +3254,7 @@ perl-Mojolicious
|
||||
perl-Mojolicious-Plugin-AssetPack
|
||||
perl-Mojolicious-Plugin-RenderFile
|
||||
perl-Moo
|
||||
perl-MooX-Role-Parameterized
|
||||
perl-Moose
|
||||
perl-MooseX-Role-Parameterized
|
||||
perl-MooseX-Role-WithOverloading
|
||||
@@ -3179,6 +3350,7 @@ perl-Set-Scalar
|
||||
perl-Smart-Comments
|
||||
perl-Socket-MsgHdr
|
||||
perl-Socket6
|
||||
perl-Software-License
|
||||
perl-Sort-Key
|
||||
perl-Sort-Naturally
|
||||
perl-Sort-Versions
|
||||
@@ -3363,8 +3535,16 @@ pexpect
|
||||
phonon
|
||||
phoronix-test-suite
|
||||
php
|
||||
php-imagick
|
||||
php-mailparse
|
||||
php-redis
|
||||
php-timezonedb
|
||||
php-xdebug
|
||||
php-yaml
|
||||
php-zip
|
||||
pickleshare
|
||||
picmi
|
||||
picocom
|
||||
pidgin
|
||||
pidgin-sipe
|
||||
piglit
|
||||
@@ -3398,9 +3578,10 @@ ply
|
||||
plzip
|
||||
pmdk
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
polkit-qt
|
||||
poppler
|
||||
poppler-data
|
||||
poppler-data-clr-rename
|
||||
popt
|
||||
portaudio
|
||||
portend
|
||||
@@ -3422,6 +3603,7 @@ proc-macro2
|
||||
processor-trace
|
||||
procmail
|
||||
procps-ng
|
||||
progress
|
||||
progressbar
|
||||
proj
|
||||
prometheus_client
|
||||
@@ -3457,6 +3639,7 @@ pycadf
|
||||
pycairo
|
||||
pycam
|
||||
pycodestyle
|
||||
pycosat
|
||||
pycparser
|
||||
pycrypto
|
||||
pycurl
|
||||
@@ -3482,6 +3665,7 @@ pyliblzma
|
||||
pylint
|
||||
pymemcache
|
||||
pymongo
|
||||
pyotherside
|
||||
pyotp
|
||||
pypandoc
|
||||
pyparsing
|
||||
@@ -3559,7 +3743,6 @@ python-swiftclient
|
||||
python-systemd
|
||||
python-tabulate
|
||||
python-tappy
|
||||
python-toml
|
||||
python-troveclient
|
||||
python-urwid
|
||||
python-utils
|
||||
@@ -3581,6 +3764,7 @@ pyxdg
|
||||
pyzmq
|
||||
qca-qt5
|
||||
qemu
|
||||
qemu-guest-additions
|
||||
qemu-lite
|
||||
qgit
|
||||
qml-box2d
|
||||
@@ -3629,6 +3813,7 @@ qtx11extras
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quassel
|
||||
quazip
|
||||
quilt
|
||||
qwt
|
||||
rabbitmq-c
|
||||
@@ -3640,6 +3825,7 @@ rasqal
|
||||
rclone
|
||||
rcssmin
|
||||
rdma-core
|
||||
re2
|
||||
re2c
|
||||
readline
|
||||
rebootmgr
|
||||
@@ -3647,6 +3833,7 @@ recommonmark
|
||||
redis
|
||||
redis-native
|
||||
redland
|
||||
redshift
|
||||
redsocks
|
||||
renderdoc
|
||||
reno
|
||||
@@ -3686,7 +3873,9 @@ rsa
|
||||
rsync
|
||||
rsyslog
|
||||
rt-tests
|
||||
rtkit
|
||||
rtslib-fb
|
||||
rttr
|
||||
ruamel-yaml
|
||||
ruby
|
||||
runc
|
||||
@@ -3712,6 +3901,7 @@ scikit-image
|
||||
scikit-learn
|
||||
scipy
|
||||
scons
|
||||
scowl
|
||||
screen
|
||||
scripttest
|
||||
scrypt
|
||||
@@ -3722,6 +3912,7 @@ seaborn
|
||||
seahorse
|
||||
secretstorage
|
||||
sed
|
||||
segno
|
||||
selenium
|
||||
semantic_version
|
||||
seqdiag
|
||||
@@ -3753,7 +3944,9 @@ smart_open
|
||||
smartcols
|
||||
smartmontools
|
||||
smmap2
|
||||
snabb
|
||||
snappy
|
||||
snitun
|
||||
snowballstemmer
|
||||
socat
|
||||
sof-crosstool-ng
|
||||
@@ -3776,12 +3969,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
|
||||
@@ -3805,6 +4004,7 @@ startup-notification
|
||||
statsd
|
||||
statsmodels
|
||||
stellarium
|
||||
step
|
||||
stestr
|
||||
stevedore
|
||||
stow
|
||||
@@ -3817,6 +4017,7 @@ subversion
|
||||
sudo
|
||||
suds-jurko
|
||||
sundials
|
||||
supertuxkart
|
||||
sure
|
||||
suricata
|
||||
svg.path
|
||||
@@ -3858,6 +4059,7 @@ telepathy-glib
|
||||
telepathy-logger
|
||||
telepathy-qt
|
||||
tempest-lib
|
||||
template-glib
|
||||
tempora
|
||||
tenacity
|
||||
tensorboard
|
||||
@@ -3868,6 +4070,7 @@ termcolor
|
||||
terminado
|
||||
terminaltables
|
||||
terminus-font
|
||||
test-generator
|
||||
testpath
|
||||
testrepository
|
||||
testresources
|
||||
@@ -3900,7 +4103,9 @@ tinyxml2
|
||||
tiptop
|
||||
tk
|
||||
tmux
|
||||
todoist
|
||||
tokyocabinet
|
||||
toml
|
||||
toolz
|
||||
tooz
|
||||
tornado
|
||||
@@ -3975,6 +4180,7 @@ virt-manager
|
||||
virt-viewer
|
||||
virtualenv
|
||||
vlc
|
||||
volk
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
@@ -4013,6 +4219,7 @@ wpa_supplicant
|
||||
wrapt
|
||||
wsgi_intercept
|
||||
wsgiref
|
||||
wsjtx
|
||||
wxWidgets
|
||||
x11perf
|
||||
x11vnc
|
||||
@@ -4049,6 +4256,7 @@ xf86-video-nouveau
|
||||
xf86-video-qxl
|
||||
xf86-video-vboxvideo
|
||||
xf86-video-vesa
|
||||
xf86-video-vmware
|
||||
xfburn
|
||||
xfce4-appfinder
|
||||
xfce4-dev-tools
|
||||
@@ -4087,12 +4295,14 @@ xrdb
|
||||
xrdp
|
||||
xrestop
|
||||
xscreensaver
|
||||
xsel
|
||||
xset
|
||||
xsetroot
|
||||
xterm
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwd
|
||||
xwdrun
|
||||
xwininfo
|
||||
xz
|
||||
yajl
|
||||
|
||||
+348
@@ -0,0 +1,348 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
import tempfile
|
||||
import subprocess
|
||||
|
||||
header = list()
|
||||
files = list()
|
||||
files_chunks = dict() # dict to list
|
||||
files_header = dict() # dict to list
|
||||
|
||||
|
||||
|
||||
def push_chunk(file, chunk):
|
||||
global files_chunks
|
||||
|
||||
if len(chunk) == 0:
|
||||
return
|
||||
|
||||
if file not in files_chunks:
|
||||
files_chunks[file] = list()
|
||||
|
||||
files_chunks[file].append(chunk)
|
||||
|
||||
|
||||
def parse_patch(lines):
|
||||
global header
|
||||
global files
|
||||
global files_chunks
|
||||
global files_header
|
||||
|
||||
phase = 0
|
||||
|
||||
currentfile = ""
|
||||
currentchunk = list()
|
||||
|
||||
|
||||
for line in lines:
|
||||
line = line.replace("\n","")
|
||||
|
||||
if line.startswith("diff --git"):
|
||||
|
||||
push_chunk(currentfile, currentchunk)
|
||||
currentchunk = list()
|
||||
|
||||
filename = line.replace("diff --git","")
|
||||
index= filename.find("b/")
|
||||
if index >= 0:
|
||||
filename = filename[index:].strip()
|
||||
currentfile = filename
|
||||
files.append(currentfile)
|
||||
phase = 1
|
||||
|
||||
if line.startswith("@@"):
|
||||
push_chunk(currentfile, currentchunk)
|
||||
currentchunk = list()
|
||||
phase = 2
|
||||
|
||||
|
||||
if phase == 0:
|
||||
header.append(line)
|
||||
if phase == 1:
|
||||
if currentfile not in files_header:
|
||||
files_header[currentfile] = list()
|
||||
files_header[currentfile].append(line)
|
||||
if phase == 2:
|
||||
currentchunk.append(line)
|
||||
|
||||
push_chunk(currentfile, currentchunk)
|
||||
currentchunk = list()
|
||||
|
||||
def print_all():
|
||||
global header
|
||||
global files
|
||||
global files_chunks
|
||||
global files_header
|
||||
|
||||
for line in header:
|
||||
print(line)
|
||||
for file in files:
|
||||
for line in files_header[file]:
|
||||
print(line)
|
||||
if file in files_chunks:
|
||||
for chunk in files_chunks[file]:
|
||||
for line in chunk:
|
||||
print(line)
|
||||
|
||||
|
||||
def zap_entire_file(filename):
|
||||
global header
|
||||
global files
|
||||
global files_chunks
|
||||
global files_header
|
||||
if filename in files:
|
||||
files.remove(filename)
|
||||
|
||||
def zap_entire_file_end(filename):
|
||||
global header
|
||||
global files
|
||||
global files_chunks
|
||||
global files_header
|
||||
for file in files:
|
||||
if file.endswith(filename):
|
||||
files.remove(file)
|
||||
|
||||
def zap_line_in_file(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[filename]:
|
||||
to_delete = list()
|
||||
for line in chunk:
|
||||
if line == ("+" + match):
|
||||
to_delete.append(line)
|
||||
if line == ("-" + match):
|
||||
to_delete.append(line)
|
||||
for line in to_delete:
|
||||
chunk.remove(line)
|
||||
|
||||
|
||||
def zap_line_in_file_start(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_remove = list()
|
||||
for line in chunk:
|
||||
if line.startswith("+" + match):
|
||||
to_remove.append(line)
|
||||
if line.startswith("-" + match):
|
||||
to_remove.append(line)
|
||||
for line in to_remove:
|
||||
chunk.remove(line)
|
||||
|
||||
def zap_plus_line_in_file(filename):
|
||||
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_remove = list()
|
||||
for line in chunk:
|
||||
if line.startswith("+"):
|
||||
to_remove.append(line)
|
||||
for line in to_remove:
|
||||
chunk.remove(line)
|
||||
|
||||
|
||||
|
||||
def chunk_empty(chunk):
|
||||
for line in chunk:
|
||||
if len(line) > 0 and line[0] == '+':
|
||||
return False
|
||||
return True
|
||||
|
||||
def zap_empty_chunks():
|
||||
global header
|
||||
global files
|
||||
global files_chunks
|
||||
global files_header
|
||||
files_to_remove = list()
|
||||
for file in files:
|
||||
if file not in files_chunks:
|
||||
files.remove(file)
|
||||
continue
|
||||
to_remove = list()
|
||||
for chunk in files_chunks[file]:
|
||||
if chunk_empty(chunk):
|
||||
to_remove.append(chunk)
|
||||
for c in to_remove:
|
||||
files_chunks[file].remove(c)
|
||||
if len(files_chunks[file]) == 0:
|
||||
files_to_remove.append(file)
|
||||
|
||||
for file in files_to_remove:
|
||||
files.remove(file)
|
||||
|
||||
|
||||
|
||||
|
||||
def main():
|
||||
|
||||
if len(sys.argv) > 1:
|
||||
filename = sys.argv[1]
|
||||
|
||||
with open (filename, "r") as myfile:
|
||||
lines = myfile.readlines()
|
||||
else:
|
||||
output = subprocess.check_output("git show", shell=True).decode("latin-1")
|
||||
lines = output.split("\n")
|
||||
|
||||
parse_patch(lines)
|
||||
|
||||
zap_entire_file("b/release")
|
||||
zap_entire_file("b/buildreq_cache")
|
||||
zap_entire_file("b/.gitignore")
|
||||
zap_entire_file("b/upstream")
|
||||
zap_entire_file("b/NEWS")
|
||||
zap_entire_file("b/ChangeLog")
|
||||
zap_entire_file_end("xz.sig")
|
||||
zap_entire_file_end("gz.sig")
|
||||
zap_entire_file_end("bz2.sig")
|
||||
|
||||
zap_line_in_file("b/testresults", "Total : 0")
|
||||
zap_line_in_file("b/testresults", "Pass : 0")
|
||||
zap_line_in_file("b/testresults", "Fail : 0")
|
||||
zap_line_in_file("b/testresults", "XFail : 0")
|
||||
zap_line_in_file("b/testresults", "Skip : 0")
|
||||
|
||||
zap_line_in_file("b/requires_ban", "#FOO")
|
||||
zap_line_in_file("b/Makefile", "ARCHIVES = ")
|
||||
zap_line_in_file("b/Makefile", "include ../common/Makefile.common")
|
||||
zap_line_in_file("b/Makefile", "")
|
||||
|
||||
zap_line_in_file_start(".spec", "Release :")
|
||||
zap_line_in_file_start(".spec", "Source99 :")
|
||||
zap_line_in_file_start(".spec", "Source0 :")
|
||||
zap_line_in_file_start(".spec", "export SOURCE_DATE_EPOCH")
|
||||
zap_line_in_file_start(".spec", "%setup -q -n ")
|
||||
zap_line_in_file_start(".spec", "URL :")
|
||||
zap_line_in_file_start(".spec", "Version :")
|
||||
zap_line_in_file_start(".spec", "Group : Development/Tools")
|
||||
zap_line_in_file_start(".spec", "No detailed description available")
|
||||
zap_line_in_file_start(".spec", "bin components for the")
|
||||
zap_line_in_file_start(".spec", "dev components for the")
|
||||
zap_line_in_file_start(".spec", "lib components for the")
|
||||
zap_line_in_file_start(".spec", "data components for the")
|
||||
zap_line_in_file_start(".spec", "locales components for the")
|
||||
zap_line_in_file_start(".spec", "license components for the")
|
||||
zap_line_in_file_start(".spec", "Group: Default")
|
||||
zap_line_in_file_start(".spec", "export http_proxy=http://127.0.0.1:9/")
|
||||
zap_line_in_file_start(".spec", "export https_proxy=http://127.0.0.1:9/")
|
||||
zap_line_in_file_start(".spec", "export ftp_proxy=http://127.0.0.1:9/")
|
||||
zap_line_in_file_start(".spec", "export no_proxy=localhost,127.0.0.1,0.0.0.0")
|
||||
zap_line_in_file_start(".spec", "Summary:")
|
||||
zap_line_in_file_start(".spec", "Group: Development")
|
||||
zap_line_in_file_start(".spec", "Group: Binaries")
|
||||
zap_line_in_file_start(".spec", "Group: Data")
|
||||
zap_line_in_file_start(".spec", "Group: Libraries")
|
||||
zap_line_in_file_start(".spec", "export LANG=C")
|
||||
zap_line_in_file_start(".spec", "%description lib")
|
||||
zap_line_in_file_start(".spec", "%description bin")
|
||||
zap_line_in_file_start(".spec", "%description data")
|
||||
zap_line_in_file_start(".spec", "%description locales")
|
||||
zap_line_in_file_start(".spec", "%description dev")
|
||||
zap_line_in_file_start(".spec", "%description license")
|
||||
|
||||
zap_line_in_file_start("b/Makefile", "URL =")
|
||||
zap_line_in_file_start("b/Makefile", "PKG_NAME :=")
|
||||
|
||||
zap_line_in_file("b/options.conf", "archives = ")
|
||||
zap_line_in_file("b/options.conf", "giturl = ")
|
||||
zap_line_in_file("b/options.conf", "[package]")
|
||||
zap_line_in_file("b/options.conf", "")
|
||||
zap_line_in_file("b/options.conf", "[autospec]")
|
||||
zap_line_in_file("b/options.conf", "# build 32 bit libraries")
|
||||
zap_line_in_file("b/options.conf", "32bit = false")
|
||||
zap_line_in_file("b/options.conf", "# allow package to build with test failures")
|
||||
zap_line_in_file("b/options.conf", "allow_test_failures = false")
|
||||
zap_line_in_file("b/options.conf", "# unset %build ld_as_needed variable")
|
||||
zap_line_in_file("b/options.conf", "asneeded = false")
|
||||
zap_line_in_file("b/options.conf", "# this package is trusted enough to automatically update (used by other tools)")
|
||||
zap_line_in_file("b/options.conf", "autoupdate = false")
|
||||
zap_line_in_file("b/options.conf", "# extend flags with '-std=gnu++98")
|
||||
zap_line_in_file("b/options.conf", "broken_c++ = false")
|
||||
zap_line_in_file("b/options.conf", "# disable parallelization during build")
|
||||
zap_line_in_file("b/options.conf", "broken_parallel_build = false")
|
||||
zap_line_in_file("b/options.conf", "# this package is a library compatability package and only ships versioned library files")
|
||||
zap_line_in_file("b/options.conf", "compat = false")
|
||||
zap_line_in_file("b/options.conf", "# set conservative build flags")
|
||||
zap_line_in_file("b/options.conf", "conservative_flags = false")
|
||||
zap_line_in_file("b/options.conf", "# dev package requires the extras to be installed")
|
||||
zap_line_in_file("b/options.conf", "dev_requires_extras = false")
|
||||
zap_line_in_file("b/options.conf", "# pass -ffast-math to compiler")
|
||||
zap_line_in_file("b/options.conf", "fast-math = false")
|
||||
zap_line_in_file("b/options.conf", "# optimize build for speed over size")
|
||||
zap_line_in_file("b/options.conf", "funroll-loops = false")
|
||||
zap_line_in_file("b/options.conf", "# set flags to smallest -02 flags possible")
|
||||
zap_line_in_file("b/options.conf", "insecure_build = false")
|
||||
zap_line_in_file("b/options.conf", "# do not remove static libraries")
|
||||
zap_line_in_file("b/options.conf", "keepstatic = false")
|
||||
zap_line_in_file("b/options.conf", "# do not require autostart subpackage")
|
||||
zap_line_in_file("b/options.conf", "no_autostart = false")
|
||||
zap_line_in_file("b/options.conf", "# disable stripping binaries")
|
||||
zap_line_in_file("b/options.conf", "nostrip = false")
|
||||
zap_line_in_file("b/options.conf", "# optimize build for size over speed")
|
||||
zap_line_in_file("b/options.conf", "optimize_size = false")
|
||||
zap_line_in_file("b/options.conf", "# set profile for pgo")
|
||||
zap_line_in_file("b/options.conf", "pgo = false")
|
||||
zap_line_in_file("b/options.conf", "# set flags for security-sensitive builds")
|
||||
zap_line_in_file("b/options.conf", "security_sensitive = false")
|
||||
zap_line_in_file("b/options.conf", "# do not run test suite")
|
||||
zap_line_in_file("b/options.conf", "skip_tests = false")
|
||||
zap_line_in_file("b/options.conf", "# add .so files to the lib package instead of dev")
|
||||
zap_line_in_file("b/options.conf", "so_to_lib = false")
|
||||
zap_line_in_file("b/options.conf", "# configure build for avx2")
|
||||
zap_line_in_file("b/options.conf", "use_avx2 = false")
|
||||
zap_line_in_file("b/options.conf", "# configure build for avx512")
|
||||
zap_line_in_file("b/options.conf", "use_avx512 = false")
|
||||
zap_line_in_file("b/options.conf", "# add clang flags")
|
||||
zap_line_in_file("b/options.conf", "use_clang = false")
|
||||
zap_line_in_file("b/options.conf", "# configure build for lto")
|
||||
zap_line_in_file("b/options.conf", "use_lto = false")
|
||||
zap_line_in_file("b/options.conf", "# require package verification for build")
|
||||
zap_line_in_file("b/options.conf", "verify_required = true")
|
||||
|
||||
zap_line_in_file("b/buildreq_add", "# This file contains additional build requirements that did not get")
|
||||
zap_line_in_file("b/buildreq_add", "# picked up automatically. One name per line, no whitespace.")
|
||||
zap_line_in_file("b/buildreq_ban", "# This file contains build requirements that get picked up but are")
|
||||
zap_line_in_file("b/buildreq_ban", "# undesirable. One entry per line, no whitespace.")
|
||||
|
||||
|
||||
zap_line_in_file("b/excludes", "# This file contains the output files that need %exclude. Full path")
|
||||
zap_line_in_file("b/excludes", "# names, one per line.")
|
||||
|
||||
zap_line_in_file("b/pkgconfig_add", "# This file contains additional pkgconfig build requirements that did")
|
||||
zap_line_in_file("b/pkgconfig_add", "# not get picked up automatically. One name per line, no whitespace.")
|
||||
zap_line_in_file("b/pkgconfig_ban", "# This file contains pkgconfig build requirements that get picked up")
|
||||
zap_line_in_file("b/pkgconfig_ban", "# but are undesirable. One entry per line, no whitespace.")
|
||||
zap_line_in_file("b/requires_add", "# This file contains additional runtime requirements that did not get")
|
||||
zap_line_in_file("b/requires_add", "# picked up automatically. One name per line, no whitespace.")
|
||||
zap_line_in_file("b/requires_ban", "# This file contains runtime requirements that get picked up but are")
|
||||
zap_line_in_file("b/requires_ban", "# undesirable. One entry per line, no whitespace.")
|
||||
|
||||
zap_line_in_file_start(".spec", "Summary : No detailed summary available")
|
||||
|
||||
zap_plus_line_in_file("symbols")
|
||||
zap_plus_line_in_file("symbols32")
|
||||
|
||||
zap_entire_file("b/whatrequires")
|
||||
|
||||
zap_empty_chunks()
|
||||
|
||||
print_all()
|
||||
|
||||
if __name__ == '__main__':
|
||||
with tempfile.TemporaryDirectory() as workingdir:
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user