mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
81 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 22cf4d9aaa | |||
| abf88fe302 | |||
| e7d86e5ace | |||
| 0ca8a71a6a | |||
| c594d50d97 | |||
| 923b813833 | |||
| facfc57d55 | |||
| 9e0d404e52 | |||
| 9d954cb33a | |||
| 158c743fde | |||
| c5969bbd83 | |||
| cb01f2b9ef | |||
| c58e39da50 | |||
| 26dea91314 | |||
| efa4e1bcf8 | |||
| 9fba303a7b | |||
| eefffcb4cd | |||
| ae59dd4aa9 | |||
| 9ed6cf64eb | |||
| 1e1a52e948 | |||
| b9d3725172 | |||
| d2c0eea1d2 | |||
| 038007f64a | |||
| 930a8bd3f7 | |||
| 33c27808a6 | |||
| f9b7f544be | |||
| 6fe60137f4 | |||
| b32e466635 | |||
| 755bd91716 | |||
| d2b615d14b | |||
| 71b5075a7b | |||
| fd6bcb7b24 | |||
| 771b704606 | |||
| b3ea1cd421 | |||
| 752274f532 | |||
| 1addfd447d | |||
| 8546a126bd | |||
| 280d5471d7 | |||
| 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 |
+36
-8
@@ -186,6 +186,18 @@ autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
bash update_changelog.sh ; \
|
||||
git commit --amend --no-edit Change* ; \
|
||||
fi
|
||||
@$(MAKE) -s for-review.txt
|
||||
@printf "\n**\n"
|
||||
@printf "** NOTICE: A patch with changes is available in the file for-review.txt\n"
|
||||
@printf "** To recreate (e.g., after git commit --amend), run make for-review.txt\n"
|
||||
@printf "** To submit for review: git send-email --to <recipient> for-review.txt\n"
|
||||
@printf "**\n\n"
|
||||
|
||||
#help for-review.txt: Creates the for-review.txt file, which is
|
||||
#help a minimized version of the Git commit, suitable for code review.
|
||||
for-review.txt:
|
||||
git diff | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt
|
||||
.PHONY: for-review.txt
|
||||
|
||||
#help autospecnogit: Runs autospec, but does not create a commit
|
||||
autospecnogit:
|
||||
@@ -318,7 +330,7 @@ scratch: $(SPECFILE) upstream $(SRPMFILE) kojidef
|
||||
|
||||
#help scratch-wait: Performs scratch-build on package.
|
||||
scratch-wait: $(SPECFILE) upstream $(SRPMFILE) kojidef
|
||||
$(KOJI_CMD) build --scratch $(KOJI_TAG) $(SRPMFILE)
|
||||
$(KOJI_CMD) build --scratch --wait $(KOJI_TAG) $(SRPMFILE)
|
||||
|
||||
#help koji-nowait: Same as 'make koji', but do not block
|
||||
koji-nowait:
|
||||
@@ -411,27 +423,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".
|
||||
|
||||
+9
-2
@@ -226,8 +226,15 @@ 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) format-patch -1 --stdout) > $(TOPLVL)/packages/$(NAME)/for-review.txt; \
|
||||
printf "\n**\n"; \
|
||||
printf "** NOTICE: A patch with changes is available in the file $(TOPLVL)/packages/$(NAME)/for-review.txt\n"; \
|
||||
printf "** Please look through this file and if you are unsure, please submit for code review with git send-email\n"; \
|
||||
printf "**\n\n"; \
|
||||
fi; \
|
||||
else \
|
||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||
exit 1; \
|
||||
|
||||
@@ -43,6 +43,7 @@ Markdown
|
||||
MarkupSafe
|
||||
ModemManager
|
||||
MonkeyType
|
||||
MuseScore
|
||||
MySQL-python
|
||||
NetworkManager
|
||||
NetworkManager-openconnect
|
||||
@@ -59,6 +60,7 @@ PasteDeploy
|
||||
Pillow
|
||||
Pint
|
||||
PyDispatcher
|
||||
PyICU
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyNaCl
|
||||
@@ -322,6 +324,7 @@ R-dotCall64
|
||||
R-downloader
|
||||
R-dplyr
|
||||
R-drc
|
||||
R-dtplyr
|
||||
R-dtw
|
||||
R-dygraphs
|
||||
R-dynlm
|
||||
@@ -392,6 +395,7 @@ R-fossil
|
||||
R-fpc
|
||||
R-fracdiff
|
||||
R-fs
|
||||
R-fst
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
@@ -435,6 +439,7 @@ R-haplo.stats
|
||||
R-haven
|
||||
R-hdrcde
|
||||
R-here
|
||||
R-hexView
|
||||
R-hexbin
|
||||
R-highlight
|
||||
R-highr
|
||||
@@ -452,6 +457,7 @@ R-ica
|
||||
R-igraph
|
||||
R-import
|
||||
R-ineq
|
||||
R-influenceR
|
||||
R-ini
|
||||
R-inline
|
||||
R-inum
|
||||
@@ -489,6 +495,7 @@ R-leaps
|
||||
R-lfe
|
||||
R-lhs
|
||||
R-libcoin
|
||||
R-lintr
|
||||
R-listenv
|
||||
R-listviewer
|
||||
R-lle
|
||||
@@ -496,6 +503,7 @@ R-lme4
|
||||
R-lmerTest
|
||||
R-lmtest
|
||||
R-locfit
|
||||
R-logcondens
|
||||
R-logspline
|
||||
R-loo
|
||||
R-lpSolve
|
||||
@@ -662,6 +670,8 @@ R-rasterVis
|
||||
R-rbenchmark
|
||||
R-rcmdcheck
|
||||
R-reactR
|
||||
R-reactlog
|
||||
R-readODS
|
||||
R-readr
|
||||
R-readstata13
|
||||
R-readxl
|
||||
@@ -678,6 +688,7 @@ R-reprex
|
||||
R-reshape
|
||||
R-reshape2
|
||||
R-reticulate
|
||||
R-rex
|
||||
R-rgenoud
|
||||
R-rgeos
|
||||
R-rgl
|
||||
@@ -690,6 +701,7 @@ R-rjags
|
||||
R-rjstat
|
||||
R-rlang
|
||||
R-rmarkdown
|
||||
R-rmatio
|
||||
R-rms
|
||||
R-rmutil
|
||||
R-rncl
|
||||
@@ -711,6 +723,8 @@ R-rsdmx
|
||||
R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstudio
|
||||
R-rstudio-server
|
||||
R-rstudioapi
|
||||
R-rsvg
|
||||
R-runjags
|
||||
@@ -770,6 +784,7 @@ R-startupmsg
|
||||
R-statip
|
||||
R-statmod
|
||||
R-statnet.common
|
||||
R-stringdist
|
||||
R-stringi
|
||||
R-stringr
|
||||
R-strucchange
|
||||
@@ -825,6 +840,7 @@ R-varImp
|
||||
R-vcd
|
||||
R-vcdExtra
|
||||
R-vcr
|
||||
R-vctrs
|
||||
R-vegan
|
||||
R-vioplot
|
||||
R-viridis
|
||||
@@ -862,6 +878,8 @@ SDL_image
|
||||
SDL_mixer
|
||||
SDL_net
|
||||
SDL_ttf
|
||||
SFCGAL
|
||||
SFML
|
||||
SPIRV-Headers
|
||||
SPIRV-Tools
|
||||
SQLAlchemy
|
||||
@@ -874,6 +892,7 @@ SuiteSparse
|
||||
Tempita
|
||||
Theano
|
||||
Thunar
|
||||
UCD
|
||||
UkPostcodeParser
|
||||
Unidecode
|
||||
Uranium
|
||||
@@ -961,8 +980,10 @@ aniso8601
|
||||
ansible
|
||||
anyjson
|
||||
apache-ant
|
||||
apache-flink
|
||||
apache-hadoop
|
||||
apache-kafka
|
||||
apache-libcloud
|
||||
apache-maven
|
||||
apache-spark
|
||||
apache-zookeeper
|
||||
@@ -977,8 +998,11 @@ argcomplete
|
||||
argon2
|
||||
argon2_cffi
|
||||
argparse
|
||||
aria2
|
||||
ark
|
||||
armadillo
|
||||
arp-scan
|
||||
arpack-ng
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
@@ -1004,6 +1028,8 @@ atomicwrites
|
||||
attica
|
||||
attr
|
||||
attrs
|
||||
audacious
|
||||
audacious-plugins
|
||||
audiofile
|
||||
audisp-json
|
||||
audit
|
||||
@@ -1079,6 +1105,7 @@ boto
|
||||
boto3
|
||||
botocore
|
||||
bovo
|
||||
breathe
|
||||
breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
@@ -1106,6 +1133,7 @@ buildreq-kernel
|
||||
buildreq-make
|
||||
buildreq-meson
|
||||
buildreq-mvn
|
||||
buildreq-php
|
||||
buildreq-qmake
|
||||
buildreq-scons
|
||||
bundle-chroot-builder
|
||||
@@ -1124,18 +1152,22 @@ cairo
|
||||
cairomm
|
||||
calc
|
||||
calendarsupport
|
||||
can-utils
|
||||
cantarell-fonts
|
||||
cantata
|
||||
cantor
|
||||
capnproto
|
||||
caribou
|
||||
case
|
||||
cassandra
|
||||
cassandra-dep
|
||||
castellan
|
||||
casync
|
||||
catch2
|
||||
catkin
|
||||
catkin_pkg
|
||||
ccache
|
||||
ccid
|
||||
ceilometer
|
||||
ceph
|
||||
ceph-deploy
|
||||
@@ -1183,6 +1215,7 @@ clr-init
|
||||
clr-installer
|
||||
clr-man-pages
|
||||
clr-network-troubleshooter
|
||||
clr-one-shot-updates
|
||||
clr-power-tweaks
|
||||
clr-python-timestamp
|
||||
clr-pyversion-strip
|
||||
@@ -1205,6 +1238,7 @@ cnf
|
||||
cni
|
||||
cni-plugins
|
||||
cockpit
|
||||
codec2
|
||||
codecov
|
||||
cogl
|
||||
coinmp
|
||||
@@ -1231,16 +1265,19 @@ 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
|
||||
compat-fuse-soname2
|
||||
compat-gdal-soname20
|
||||
compat-gegl
|
||||
compat-gegl-0.3
|
||||
compat-glew-soname1
|
||||
@@ -1252,9 +1289,11 @@ compat-hdf5-soname10
|
||||
compat-hwloc-soname5
|
||||
compat-hyperscan-soname4
|
||||
compat-icu4c-soname61
|
||||
compat-icu4c-soname63
|
||||
compat-ilmbase-soname23
|
||||
compat-intel-gmmlib-soname1
|
||||
compat-ipset-soname10
|
||||
compat-ldc-soname84
|
||||
compat-libgit2-soname27
|
||||
compat-libical-soname2
|
||||
compat-libidn-soname11
|
||||
@@ -1265,6 +1304,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
|
||||
@@ -1275,6 +1315,8 @@ compat-openssl-soname-10
|
||||
compat-poppler-soname78
|
||||
compat-poppler-soname82
|
||||
compat-poppler-soname83
|
||||
compat-poppler-soname86
|
||||
compat-proj-soname13
|
||||
compat-protobuf-soname14
|
||||
compat-protobuf-soname15
|
||||
compat-python36
|
||||
@@ -1304,6 +1346,7 @@ cpio
|
||||
cppcheck
|
||||
cpprestsdk
|
||||
cppunit
|
||||
cppzmq
|
||||
cpuid
|
||||
cpuloadgen
|
||||
cracklib
|
||||
@@ -1492,6 +1535,7 @@ dpdk
|
||||
dracut
|
||||
dragon
|
||||
drkonqi
|
||||
dssi
|
||||
dstat
|
||||
dtc
|
||||
dtopt
|
||||
@@ -1509,6 +1553,7 @@ edk2
|
||||
efibootmgr
|
||||
efitools
|
||||
efivar
|
||||
efl
|
||||
eigen
|
||||
elasticsearch
|
||||
elasticsearch-dep
|
||||
@@ -1518,23 +1563,29 @@ elfutils
|
||||
elixir
|
||||
ell
|
||||
emacs
|
||||
emacs-x11
|
||||
embree
|
||||
empy
|
||||
enchant
|
||||
enlightenment
|
||||
entrypoints
|
||||
enum34
|
||||
envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
epydoc
|
||||
eternalegypt
|
||||
ethtool
|
||||
etr
|
||||
evdev
|
||||
eventlet
|
||||
eventviews
|
||||
evince
|
||||
evolution
|
||||
evolution-data-server
|
||||
evolution-ews
|
||||
evtest
|
||||
execnet
|
||||
exempi
|
||||
exiv2
|
||||
@@ -1544,6 +1595,7 @@ expect
|
||||
extra-cmake-modules
|
||||
extras
|
||||
f2fs-tools
|
||||
faas-cli
|
||||
faba-icon-theme
|
||||
fakeroot
|
||||
fann
|
||||
@@ -1551,11 +1603,13 @@ fann2
|
||||
farstream
|
||||
fasteners
|
||||
fastimport
|
||||
fastnumbers
|
||||
fcgi
|
||||
fcoe-utils
|
||||
fdm_materials
|
||||
feh
|
||||
fetchmail
|
||||
ffmpegthumbs
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
@@ -1583,9 +1637,11 @@ flatpak
|
||||
flatpak-builder
|
||||
fldigi
|
||||
flex
|
||||
flink-dep
|
||||
flmsg
|
||||
flnet
|
||||
fltk
|
||||
fluidsynth
|
||||
folks
|
||||
font-util
|
||||
fontconfig
|
||||
@@ -1593,6 +1649,7 @@ fontforge
|
||||
fonttools
|
||||
fossil
|
||||
frameworkintegration
|
||||
freedv
|
||||
freeglut
|
||||
freeipmi
|
||||
freetype
|
||||
@@ -1604,7 +1661,6 @@ funcparserlib
|
||||
funcsigs
|
||||
functools32
|
||||
fuse
|
||||
futures
|
||||
futurist
|
||||
fwupd
|
||||
fwupdate
|
||||
@@ -1616,6 +1672,8 @@ gawk
|
||||
gc
|
||||
gcab
|
||||
gcc
|
||||
gcc7
|
||||
gcc8
|
||||
gcompris-qt
|
||||
gcr
|
||||
gcs-oauth2-boto-plugin
|
||||
@@ -1639,8 +1697,10 @@ gexiv2
|
||||
gfbgraph
|
||||
gflags
|
||||
gftp
|
||||
ghc
|
||||
ghostscript
|
||||
gimp
|
||||
girara
|
||||
git
|
||||
git-gui
|
||||
gitdb2
|
||||
@@ -1673,6 +1733,7 @@ gnome-applets
|
||||
gnome-autoar
|
||||
gnome-backgrounds
|
||||
gnome-bluetooth
|
||||
gnome-boxes
|
||||
gnome-calculator
|
||||
gnome-calendar
|
||||
gnome-characters
|
||||
@@ -1694,6 +1755,7 @@ gnome-music
|
||||
gnome-online-accounts
|
||||
gnome-panel
|
||||
gnome-photos
|
||||
gnome-screensaver
|
||||
gnome-screenshot
|
||||
gnome-session
|
||||
gnome-settings-daemon
|
||||
@@ -1730,6 +1792,7 @@ gperf
|
||||
gperftools
|
||||
gpgme
|
||||
gphoto2
|
||||
gpm
|
||||
gpredict
|
||||
gptfdisk
|
||||
gradle
|
||||
@@ -1749,8 +1812,10 @@ grilo-plugins
|
||||
groff
|
||||
grpcio
|
||||
grub
|
||||
gsequencer
|
||||
gsettings-desktop-schemas
|
||||
gsl
|
||||
gsm
|
||||
gsound
|
||||
gspell
|
||||
gst-plugins-bad
|
||||
@@ -1770,6 +1835,7 @@ gtkmm2
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
gtkspell3
|
||||
gtkwave
|
||||
guile
|
||||
gupnp-av
|
||||
gutenprint
|
||||
@@ -1785,7 +1851,9 @@ hammock
|
||||
haproxy
|
||||
hardlink
|
||||
harfbuzz
|
||||
haskell-random
|
||||
hdf5
|
||||
hdmedians
|
||||
hdparm
|
||||
heat
|
||||
helloworld
|
||||
@@ -1797,6 +1865,7 @@ hicolor-icon-theme
|
||||
hiredis
|
||||
hold
|
||||
home-assistant
|
||||
home-assistant-frontend
|
||||
horizon
|
||||
horovod
|
||||
hostname
|
||||
@@ -1823,6 +1892,8 @@ iasimage
|
||||
ibus
|
||||
ibus-libpinyin
|
||||
ibus-table
|
||||
ibus-typing-booster
|
||||
ibus-unikey
|
||||
icalendar
|
||||
icdiff
|
||||
iceauth
|
||||
@@ -1840,6 +1911,7 @@ imageio
|
||||
imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
importlib_metadata
|
||||
indent
|
||||
infiniband-diags
|
||||
inflection
|
||||
@@ -1847,6 +1919,7 @@ influxdb
|
||||
iniparse
|
||||
init-rdahead
|
||||
inkscape
|
||||
innoextract
|
||||
inotify-tools
|
||||
intel-cmt-cat
|
||||
intel-compute-runtime
|
||||
@@ -1904,6 +1977,7 @@ jedi-vim
|
||||
jeepney
|
||||
jemalloc
|
||||
jmespath
|
||||
joblib
|
||||
joe
|
||||
josepy
|
||||
jq
|
||||
@@ -1917,6 +1991,7 @@ jsonpath-rw-ext
|
||||
jsonpointer
|
||||
jsonrpc-glib
|
||||
jsonschema
|
||||
junit-xml
|
||||
jupyter
|
||||
jupyter-nbgallery
|
||||
jupyter-notebook-gist
|
||||
@@ -1932,6 +2007,7 @@ kactivitymanagerd
|
||||
kafka-dep
|
||||
kalarm
|
||||
kalarmcal
|
||||
kalgebra
|
||||
kamera
|
||||
kanagram
|
||||
kapidox
|
||||
@@ -1979,6 +2055,7 @@ kde-dev-utils
|
||||
kde-gtk-config
|
||||
kdebugsettings
|
||||
kdeclarative
|
||||
kdeconnect-kde
|
||||
kdecoration
|
||||
kded
|
||||
kdeedu-data
|
||||
@@ -2023,6 +2100,7 @@ kgeography
|
||||
kget
|
||||
kglobalaccel
|
||||
kgoldrunner
|
||||
kgpg
|
||||
kguiaddons
|
||||
khal
|
||||
khangman
|
||||
@@ -2131,7 +2209,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
|
||||
@@ -2149,6 +2233,7 @@ kwrited
|
||||
kxmlgui
|
||||
kxmlrpcclient
|
||||
kyotocabinet
|
||||
ladspa_sdk
|
||||
lark-parser
|
||||
latencytop
|
||||
latexcodec
|
||||
@@ -2193,6 +2278,7 @@ libaio
|
||||
libappindicator
|
||||
libarchive
|
||||
libarchive-c
|
||||
libass
|
||||
libassuan
|
||||
libasyncns
|
||||
libatasmart
|
||||
@@ -2209,6 +2295,7 @@ libcdio
|
||||
libcdr
|
||||
libcgroup
|
||||
libchamplain
|
||||
libclc
|
||||
libcmis
|
||||
libcomps
|
||||
libconfig
|
||||
@@ -2259,6 +2346,7 @@ libgit2-glib
|
||||
libglade
|
||||
libgnome-keyring
|
||||
libgnomekbd
|
||||
libgovirt
|
||||
libgpg-error
|
||||
libgphoto2
|
||||
libgravatar
|
||||
@@ -2273,6 +2361,7 @@ libidn
|
||||
libidn2
|
||||
libindicator
|
||||
libinput
|
||||
libinstpatch
|
||||
libiscsi
|
||||
libisofs
|
||||
libite
|
||||
@@ -2291,6 +2380,7 @@ libkipi
|
||||
libkleo
|
||||
libkmahjongg
|
||||
libkomparediff2
|
||||
libksane
|
||||
libksba
|
||||
libkscreen
|
||||
libksieve
|
||||
@@ -2312,6 +2402,7 @@ libmtp
|
||||
libmwaw
|
||||
libmypaint
|
||||
libndp
|
||||
libnetfilter_acct
|
||||
libnetfilter_conntrack
|
||||
libnetfilter_cthelper
|
||||
libnetfilter_cttimeout
|
||||
@@ -2381,6 +2472,7 @@ libtheora
|
||||
libtirpc
|
||||
libtk-img
|
||||
libtool
|
||||
libtorrent-rasterbar
|
||||
libudev0-shim
|
||||
libuev
|
||||
libuninameslist
|
||||
@@ -2430,6 +2522,7 @@ linecache2
|
||||
links
|
||||
linux
|
||||
linux-aws
|
||||
linux-current
|
||||
linux-firmware
|
||||
linux-firmware-ipu
|
||||
linux-gce
|
||||
@@ -2437,14 +2530,16 @@ 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-lts2017
|
||||
linux-lts2018
|
||||
linux-mainline
|
||||
linux-networktest
|
||||
linux-oracle
|
||||
linux-pk414-preempt-rt
|
||||
linux-preempt-rt
|
||||
linux-steam-integration
|
||||
linux-tools
|
||||
@@ -2457,6 +2552,7 @@ lm-sensors
|
||||
lmdb
|
||||
locket
|
||||
locustio
|
||||
log4cpp
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
@@ -2472,6 +2568,8 @@ lua
|
||||
lua52
|
||||
lualgi
|
||||
luarocks
|
||||
lutris
|
||||
lv2
|
||||
lxml
|
||||
lxqt-about
|
||||
lxqt-admin
|
||||
@@ -2499,6 +2597,7 @@ make
|
||||
makedepend
|
||||
man-db
|
||||
man-pages
|
||||
man-pages-posix
|
||||
marble
|
||||
mariadb
|
||||
mash
|
||||
@@ -2566,7 +2665,9 @@ mpc
|
||||
mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpir
|
||||
mpmath
|
||||
mpv
|
||||
mraa
|
||||
msgpack
|
||||
msm
|
||||
@@ -2577,6 +2678,7 @@ msrestazure
|
||||
mstflint
|
||||
mtd-utils
|
||||
mtdev
|
||||
mtools
|
||||
mtr
|
||||
multidict
|
||||
multimon-ng
|
||||
@@ -2589,15 +2691,21 @@ musl
|
||||
mutagen
|
||||
mutt
|
||||
mutter
|
||||
mvn-aether-core
|
||||
mvn-cdi-api
|
||||
mvn-commons-cli
|
||||
mvn-commons-codec
|
||||
mxnet
|
||||
mycroft-core
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mypy_extensions
|
||||
mysqltcl
|
||||
mythes
|
||||
nagios-plugins
|
||||
nano
|
||||
nasm
|
||||
natsort
|
||||
nautilus
|
||||
nbconvert
|
||||
nbformat
|
||||
@@ -2616,6 +2724,7 @@ net-tools
|
||||
netaddr
|
||||
netbase
|
||||
netcdf
|
||||
netdata
|
||||
netdisco
|
||||
netifaces
|
||||
netkit-telnet
|
||||
@@ -2632,7 +2741,9 @@ nfs4-acl-tools
|
||||
nftables
|
||||
nghttp2
|
||||
nginx
|
||||
nginx-mainline
|
||||
nicstat
|
||||
nim
|
||||
ninja
|
||||
nload
|
||||
nlopt
|
||||
@@ -2645,6 +2756,7 @@ nose-cover3
|
||||
nose-parameterized
|
||||
nosexcover
|
||||
nosync
|
||||
not-ffmpeg
|
||||
notebook
|
||||
notmuch
|
||||
noto-cjk
|
||||
@@ -2723,6 +2835,7 @@ os-autoinst
|
||||
os-brick
|
||||
os-client-config
|
||||
os-ken
|
||||
os-resource-classes
|
||||
os-service-types
|
||||
os-testr
|
||||
os-traits
|
||||
@@ -2805,6 +2918,7 @@ pciutils
|
||||
pcmanfm-qt
|
||||
pcre
|
||||
pcre2
|
||||
pcsc-lite
|
||||
pdns
|
||||
pdns-recursor
|
||||
pecan
|
||||
@@ -2835,11 +2949,13 @@ 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
|
||||
perl-BSD-Resource
|
||||
perl-Biblio-EndnoteStyle
|
||||
perl-Bit-Vector
|
||||
perl-Browser-Open
|
||||
perl-Business-ISBN
|
||||
perl-Business-ISBN-Data
|
||||
@@ -2857,6 +2973,8 @@ perl-CSS-DOM
|
||||
perl-CSS-Minifier-XS
|
||||
perl-CSS-Tiny
|
||||
perl-Cache-Simple-TimedExpiry
|
||||
perl-Cairo
|
||||
perl-Cairo-GObject
|
||||
perl-Calendar-Simple
|
||||
perl-Canary-Stability
|
||||
perl-Capture-Tiny
|
||||
@@ -2916,6 +3034,7 @@ perl-Curses
|
||||
perl-DBD-Pg
|
||||
perl-DBD-SQLite
|
||||
perl-DBD-SQLite2
|
||||
perl-DBD-mysql
|
||||
perl-DBI
|
||||
perl-DBICx-TestDatabase
|
||||
perl-DBIx-Class
|
||||
@@ -2940,10 +3059,12 @@ 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
|
||||
perl-Data-Validate-IP
|
||||
perl-Date-Manip
|
||||
perl-DateTime
|
||||
perl-DateTime-Format-Builder
|
||||
perl-DateTime-Format-DateParse
|
||||
@@ -3005,6 +3126,7 @@ perl-ExtUtils-Config
|
||||
perl-ExtUtils-Depends
|
||||
perl-ExtUtils-Helpers
|
||||
perl-ExtUtils-InstallPaths
|
||||
perl-ExtUtils-PkgConfig
|
||||
perl-FCGI-ProcManager
|
||||
perl-Feed-Find
|
||||
perl-Fennec-Lite
|
||||
@@ -3052,7 +3174,11 @@ perl-Geo-IPfree
|
||||
perl-Getopt-Euclid
|
||||
perl-Getopt-Tabular
|
||||
perl-Git-Version-Compare
|
||||
perl-Glib
|
||||
perl-Glib-Object-Introspection
|
||||
perl-Graph
|
||||
perl-Gtk3
|
||||
perl-Gtk3-WebKit
|
||||
perl-Guard
|
||||
perl-HTML-Clean
|
||||
perl-HTML-Encoding
|
||||
@@ -3115,6 +3241,7 @@ perl-Inline-C
|
||||
perl-JSON
|
||||
perl-JSON-MaybeXS
|
||||
perl-JSON-RPC
|
||||
perl-JSON-XS
|
||||
perl-JavaScript-Minifier-XS
|
||||
perl-LWP-MediaTypes
|
||||
perl-LWP-Protocol-https
|
||||
@@ -3199,6 +3326,7 @@ perl-Moose
|
||||
perl-MooseX-Role-Parameterized
|
||||
perl-MooseX-Role-WithOverloading
|
||||
perl-Mozilla-CA
|
||||
perl-Net-Bluetooth
|
||||
perl-Net-CIDR-Lite
|
||||
perl-Net-DBus
|
||||
perl-Net-DNS
|
||||
@@ -3290,6 +3418,7 @@ perl-Set-Scalar
|
||||
perl-Smart-Comments
|
||||
perl-Socket-MsgHdr
|
||||
perl-Socket6
|
||||
perl-Software-License
|
||||
perl-Sort-Key
|
||||
perl-Sort-Naturally
|
||||
perl-Sort-Versions
|
||||
@@ -3354,6 +3483,7 @@ perl-Test-MockTime
|
||||
perl-Test-More-UTF8
|
||||
perl-Test-Most
|
||||
perl-Test-Needs
|
||||
perl-Test-NeedsDisplay
|
||||
perl-Test-NoWarnings
|
||||
perl-Test-Number-Delta
|
||||
perl-Test-Output
|
||||
@@ -3424,6 +3554,7 @@ perl-Unicode-Map
|
||||
perl-Variable-Magic
|
||||
perl-WWW-Form-UrlEncoded-XS
|
||||
perl-WWW-RobotRules
|
||||
perl-X11-IdleTime
|
||||
perl-X11-Protocol
|
||||
perl-XML-Atom
|
||||
perl-XML-Feed
|
||||
@@ -3472,8 +3603,16 @@ persistent
|
||||
pesign
|
||||
pexpect
|
||||
phonon
|
||||
phonon-vlc
|
||||
phoronix-test-suite
|
||||
php
|
||||
php-imagick
|
||||
php-mailparse
|
||||
php-redis
|
||||
php-timezonedb
|
||||
php-xdebug
|
||||
php-yaml
|
||||
php-zip
|
||||
pickleshare
|
||||
picmi
|
||||
picocom
|
||||
@@ -3508,8 +3647,10 @@ plasma-workspace-wallpapers
|
||||
pluggy
|
||||
ply
|
||||
plzip
|
||||
pm-graph
|
||||
pmdk
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
polkit-qt
|
||||
poppler
|
||||
poppler-data-clr-rename
|
||||
@@ -3518,6 +3659,7 @@ portaudio
|
||||
portend
|
||||
positional
|
||||
posix_ipc
|
||||
postgis
|
||||
postgresql
|
||||
potrace
|
||||
povray
|
||||
@@ -3591,11 +3733,13 @@ pygtkglext
|
||||
pyhs100
|
||||
pyinotify
|
||||
pykerberos
|
||||
pykwalify
|
||||
pylama
|
||||
pyliblzma
|
||||
pylint
|
||||
pymemcache
|
||||
pymongo
|
||||
pyotherside
|
||||
pyotp
|
||||
pypandoc
|
||||
pyparsing
|
||||
@@ -3673,7 +3817,6 @@ python-swiftclient
|
||||
python-systemd
|
||||
python-tabulate
|
||||
python-tappy
|
||||
python-toml
|
||||
python-troveclient
|
||||
python-urwid
|
||||
python-utils
|
||||
@@ -3693,11 +3836,13 @@ pywbem
|
||||
pyxattr
|
||||
pyxdg
|
||||
pyzmq
|
||||
qbittorrent
|
||||
qca-qt5
|
||||
qemu
|
||||
qemu-guest-additions
|
||||
qemu-lite
|
||||
qgit
|
||||
qhull
|
||||
qml-box2d
|
||||
qpdf
|
||||
qpid-python
|
||||
@@ -3748,8 +3893,11 @@ quazip
|
||||
quilt
|
||||
qwt
|
||||
rabbitmq-c
|
||||
rabbitmq-java-client
|
||||
rabbitmq-java-client-dep
|
||||
rabbitmq-server
|
||||
radvd
|
||||
rage
|
||||
ragel
|
||||
raptor2
|
||||
rasqal
|
||||
@@ -3764,6 +3912,7 @@ recommonmark
|
||||
redis
|
||||
redis-native
|
||||
redland
|
||||
redshift
|
||||
redsocks
|
||||
renderdoc
|
||||
reno
|
||||
@@ -3804,9 +3953,10 @@ rsync
|
||||
rsyslog
|
||||
rt-tests
|
||||
rtkit
|
||||
rtmpdump
|
||||
rtslib-fb
|
||||
rttr
|
||||
ruamel-yaml
|
||||
ruamel.yaml
|
||||
ruby
|
||||
runc
|
||||
rust-std32
|
||||
@@ -3825,12 +3975,14 @@ sbc
|
||||
sbsigntools
|
||||
scala
|
||||
scala-dep
|
||||
scdoc
|
||||
scene-alembic
|
||||
scikit-build
|
||||
scikit-image
|
||||
scikit-learn
|
||||
scipy
|
||||
scons
|
||||
scowl
|
||||
screen
|
||||
scripttest
|
||||
scrypt
|
||||
@@ -3841,6 +3993,7 @@ seaborn
|
||||
seahorse
|
||||
secretstorage
|
||||
sed
|
||||
segno
|
||||
selenium
|
||||
semantic_version
|
||||
seqdiag
|
||||
@@ -3850,6 +4003,7 @@ setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
setuptools-legacy
|
||||
setuptools-markdown
|
||||
setuptools_scm
|
||||
setuptools_scm_git_archive
|
||||
setxkbmap
|
||||
@@ -3872,7 +4026,9 @@ smart_open
|
||||
smartcols
|
||||
smartmontools
|
||||
smmap2
|
||||
snabb
|
||||
snappy
|
||||
snitun
|
||||
snowballstemmer
|
||||
socat
|
||||
sof-crosstool-ng
|
||||
@@ -3930,8 +4086,10 @@ startup-notification
|
||||
statsd
|
||||
statsmodels
|
||||
stellarium
|
||||
step
|
||||
stestr
|
||||
stevedore
|
||||
stoken
|
||||
stow
|
||||
strace
|
||||
stress-ng
|
||||
@@ -3942,6 +4100,7 @@ subversion
|
||||
sudo
|
||||
suds-jurko
|
||||
sundials
|
||||
supertuxkart
|
||||
sure
|
||||
suricata
|
||||
svg.path
|
||||
@@ -3982,6 +4141,7 @@ telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-logger
|
||||
telepathy-qt
|
||||
tempest
|
||||
tempest-lib
|
||||
template-glib
|
||||
tempora
|
||||
@@ -3993,7 +4153,10 @@ tensorflow-probability
|
||||
termcolor
|
||||
terminado
|
||||
terminaltables
|
||||
terminology
|
||||
terminus-font
|
||||
test-generator
|
||||
testdisk
|
||||
testpath
|
||||
testrepository
|
||||
testresources
|
||||
@@ -4026,7 +4189,9 @@ tinyxml2
|
||||
tiptop
|
||||
tk
|
||||
tmux
|
||||
todoist
|
||||
tokyocabinet
|
||||
toml
|
||||
toolz
|
||||
tooz
|
||||
tornado
|
||||
@@ -4046,12 +4211,13 @@ tracker-miners
|
||||
traitlets
|
||||
tree
|
||||
trollius
|
||||
typed-ast
|
||||
typed_ast
|
||||
typing
|
||||
typing_extensions
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
uamqp
|
||||
ucpp
|
||||
udisks2
|
||||
udunits
|
||||
@@ -4101,9 +4267,11 @@ virt-manager
|
||||
virt-viewer
|
||||
virtualenv
|
||||
vlc
|
||||
volk
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
vpnc
|
||||
vsqlite
|
||||
vte
|
||||
waffle
|
||||
@@ -4125,6 +4293,7 @@ weechat
|
||||
weston
|
||||
wget
|
||||
wheel
|
||||
wheelhouse-uploader
|
||||
which
|
||||
whois
|
||||
widgetsnbextension
|
||||
@@ -4135,6 +4304,7 @@ wireshark
|
||||
woff2
|
||||
wok
|
||||
wol
|
||||
wordpress
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
wsgi_intercept
|
||||
@@ -4162,7 +4332,6 @@ xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
xdotool
|
||||
xdpyinfo
|
||||
xemacs
|
||||
xerces-c
|
||||
xf86-input-evdev
|
||||
xf86-input-libinput
|
||||
@@ -4199,6 +4368,7 @@ xkbcomp
|
||||
xkeyboard-config
|
||||
xkill
|
||||
xlog
|
||||
xmlb
|
||||
xmlrpc-c
|
||||
xmlsec1
|
||||
xmlstarlet
|
||||
@@ -4222,6 +4392,7 @@ xterm
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwd
|
||||
xwdrun
|
||||
xwininfo
|
||||
xz
|
||||
yajl
|
||||
@@ -4240,14 +4411,17 @@ yum
|
||||
yum-metadata-parser
|
||||
zVMCloudConnector
|
||||
zake
|
||||
zathura
|
||||
zc.lockfile
|
||||
zenity
|
||||
zeroconf
|
||||
zeroconf-ioslave
|
||||
zict
|
||||
zip
|
||||
zipp
|
||||
zlib
|
||||
znc
|
||||
zoneminder
|
||||
zookeeper-dep
|
||||
zope.component
|
||||
zope.configuration
|
||||
|
||||
+360
@@ -0,0 +1,360 @@
|
||||
#!/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 format-patch -1 --stdout", 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", "export GCC_IGNORE_WERROR=1")
|
||||
zap_line_in_file_start(".spec", "export AR=gcc-ar")
|
||||
zap_line_in_file_start(".spec", "export RANLIB=gcc-ranlib")
|
||||
zap_line_in_file_start(".spec", "export NM=gcc-nm")
|
||||
zap_line_in_file_start(".spec", "export CFLAGS=\"$CFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export FCFLAGS=\"$CFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export FFLAGS=\"$CFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export CXXFLAGS=\"$CXXFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
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", "doc 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", "Group: Documentation")
|
||||
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 doc")
|
||||
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(".spec", "%package doc")
|
||||
|
||||
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