mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
75 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| 3c3fc1a16c | |||
| 3c7aac6a8e | |||
| baf555428f | |||
| 262d005c62 | |||
| ceff8301a1 |
+29
-8
@@ -186,6 +186,11 @@ autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
|||||||
bash update_changelog.sh ; \
|
bash update_changelog.sh ; \
|
||||||
git commit --amend --no-edit Change* ; \
|
git commit --amend --no-edit Change* ; \
|
||||||
fi
|
fi
|
||||||
|
@git diff | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ;
|
||||||
|
@printf "\n**\n"
|
||||||
|
@printf "** NOTICE: A patch with changes is available in the file for-review.txt\n"
|
||||||
|
@printf "** Please submit for code review with git send-email\n"
|
||||||
|
@printf "**\n\n"
|
||||||
|
|
||||||
#help autospecnogit: Runs autospec, but does not create a commit
|
#help autospecnogit: Runs autospec, but does not create a commit
|
||||||
autospecnogit:
|
autospecnogit:
|
||||||
@@ -318,7 +323,7 @@ scratch: $(SPECFILE) upstream $(SRPMFILE) kojidef
|
|||||||
|
|
||||||
#help scratch-wait: Performs scratch-build on package.
|
#help scratch-wait: Performs scratch-build on package.
|
||||||
scratch-wait: $(SPECFILE) upstream $(SRPMFILE) kojidef
|
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
|
#help koji-nowait: Same as 'make koji', but do not block
|
||||||
koji-nowait:
|
koji-nowait:
|
||||||
@@ -411,27 +416,43 @@ install:
|
|||||||
#help install-debuginfo-local: Install locally built debuginfo RPM to
|
#help install-debuginfo-local: Install locally built debuginfo RPM to
|
||||||
#help the automatic debuginfo cache location (/var/cache/debuginfo)
|
#help the automatic debuginfo cache location (/var/cache/debuginfo)
|
||||||
install-debuginfo-local:
|
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); \
|
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; \
|
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 chown -R dbginfo:dbginfo "$$d"; \
|
||||||
sudo cp -a "$$d" $$dest/; \
|
sudo cp -a "$$d" $$dest/; \
|
||||||
done; \
|
done; \
|
||||||
dest=/var/cache/debuginfo/src; \
|
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 chown -R dbginfo:dbginfo "$$d"; \
|
||||||
sudo cp -a "$$d" $$dest/; \
|
sudo cp -a "$$d" $$dest/; \
|
||||||
done; \
|
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 install-local: Install locally built RPMs to the root filesystem. Note that the
|
||||||
#help debuginfo RPM installs to /var/cache/debuginfo
|
#help debuginfo RPM installs to /var/cache/debuginfo
|
||||||
install-local:
|
install-local:
|
||||||
for r in $(filter-out ${DEBUGINFO_RPM},${RPMS}); do \
|
@for r in $(filter-out ${DEBUGINFO_RPM},${RPMS}); do \
|
||||||
rpm2cpio $$r | (cd /; sudo cpio -i -d -u); \
|
echo -n "Installing $$r... "; \
|
||||||
|
rpm2cpio $$r | (cd /; sudo cpio -i -d -u 2> /dev/null); \
|
||||||
|
echo "done"; \
|
||||||
done
|
done
|
||||||
$(MAKE) install-debuginfo-local
|
@$(MAKE) -s install-debuginfo-local
|
||||||
|
|
||||||
#help install-mock: Install locally built RPMs to the mock rootcache
|
#help install-mock: Install locally built RPMs to the mock rootcache
|
||||||
#help filesystem. This command is usually used with "make shell".
|
#help filesystem. This command is usually used with "make shell".
|
||||||
|
|||||||
+9
-2
@@ -226,8 +226,15 @@ autospecnew: preautospecnew-checks localreponotice
|
|||||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||||
$(URL); \
|
$(URL); \
|
||||||
[ $$? -eq 0 ] && $(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
if [ $$? -eq 0 ]; then \
|
||||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
$(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 submit for code review with git send-email\n"; \
|
||||||
|
printf "**\n\n"; \
|
||||||
|
fi; \
|
||||||
else \
|
else \
|
||||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
|||||||
@@ -99,6 +99,8 @@ CECILL-2.0
|
|||||||
CECILL-2.1
|
CECILL-2.1
|
||||||
CECILL-B
|
CECILL-B
|
||||||
CECILL-C
|
CECILL-C
|
||||||
|
CERN-OHL-1.1
|
||||||
|
CERN-OHL-1.2
|
||||||
CNRI-Jython
|
CNRI-Jython
|
||||||
CNRI-Python
|
CNRI-Python
|
||||||
CNRI-Python-GPL-Compatible
|
CNRI-Python-GPL-Compatible
|
||||||
@@ -183,6 +185,7 @@ Info-ZIP
|
|||||||
Intel
|
Intel
|
||||||
Intel-ACPI
|
Intel-ACPI
|
||||||
Interbase-1.0
|
Interbase-1.0
|
||||||
|
JPNIC
|
||||||
JSON
|
JSON
|
||||||
JasPer-2.0
|
JasPer-2.0
|
||||||
LAL-1.2
|
LAL-1.2
|
||||||
@@ -325,6 +328,7 @@ Spencer-94
|
|||||||
Spencer-99
|
Spencer-99
|
||||||
StandardML-NJ
|
StandardML-NJ
|
||||||
SugarCRM-1.1.3
|
SugarCRM-1.1.3
|
||||||
|
TAPR-OHL-1.0
|
||||||
TCL
|
TCL
|
||||||
TCP-wrappers
|
TCP-wrappers
|
||||||
TMate
|
TMate
|
||||||
@@ -373,6 +377,7 @@ eGenix
|
|||||||
gSOAP-1.3b
|
gSOAP-1.3b
|
||||||
gnuplot
|
gnuplot
|
||||||
iMatix
|
iMatix
|
||||||
|
libpng-2.0
|
||||||
libtiff
|
libtiff
|
||||||
mpich2
|
mpich2
|
||||||
psfrag
|
psfrag
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ Markdown
|
|||||||
MarkupSafe
|
MarkupSafe
|
||||||
ModemManager
|
ModemManager
|
||||||
MonkeyType
|
MonkeyType
|
||||||
|
MuseScore
|
||||||
MySQL-python
|
MySQL-python
|
||||||
NetworkManager
|
NetworkManager
|
||||||
NetworkManager-openconnect
|
NetworkManager-openconnect
|
||||||
@@ -59,6 +60,7 @@ PasteDeploy
|
|||||||
Pillow
|
Pillow
|
||||||
Pint
|
Pint
|
||||||
PyDispatcher
|
PyDispatcher
|
||||||
|
PyICU
|
||||||
PyJWT
|
PyJWT
|
||||||
PyMySQL
|
PyMySQL
|
||||||
PyNaCl
|
PyNaCl
|
||||||
@@ -322,6 +324,7 @@ R-dotCall64
|
|||||||
R-downloader
|
R-downloader
|
||||||
R-dplyr
|
R-dplyr
|
||||||
R-drc
|
R-drc
|
||||||
|
R-dtplyr
|
||||||
R-dtw
|
R-dtw
|
||||||
R-dygraphs
|
R-dygraphs
|
||||||
R-dynlm
|
R-dynlm
|
||||||
@@ -392,6 +395,7 @@ R-fossil
|
|||||||
R-fpc
|
R-fpc
|
||||||
R-fracdiff
|
R-fracdiff
|
||||||
R-fs
|
R-fs
|
||||||
|
R-fst
|
||||||
R-futile.logger
|
R-futile.logger
|
||||||
R-futile.options
|
R-futile.options
|
||||||
R-future
|
R-future
|
||||||
@@ -435,6 +439,7 @@ R-haplo.stats
|
|||||||
R-haven
|
R-haven
|
||||||
R-hdrcde
|
R-hdrcde
|
||||||
R-here
|
R-here
|
||||||
|
R-hexView
|
||||||
R-hexbin
|
R-hexbin
|
||||||
R-highlight
|
R-highlight
|
||||||
R-highr
|
R-highr
|
||||||
@@ -452,6 +457,7 @@ R-ica
|
|||||||
R-igraph
|
R-igraph
|
||||||
R-import
|
R-import
|
||||||
R-ineq
|
R-ineq
|
||||||
|
R-influenceR
|
||||||
R-ini
|
R-ini
|
||||||
R-inline
|
R-inline
|
||||||
R-inum
|
R-inum
|
||||||
@@ -489,6 +495,7 @@ R-leaps
|
|||||||
R-lfe
|
R-lfe
|
||||||
R-lhs
|
R-lhs
|
||||||
R-libcoin
|
R-libcoin
|
||||||
|
R-lintr
|
||||||
R-listenv
|
R-listenv
|
||||||
R-listviewer
|
R-listviewer
|
||||||
R-lle
|
R-lle
|
||||||
@@ -496,6 +503,7 @@ R-lme4
|
|||||||
R-lmerTest
|
R-lmerTest
|
||||||
R-lmtest
|
R-lmtest
|
||||||
R-locfit
|
R-locfit
|
||||||
|
R-logcondens
|
||||||
R-logspline
|
R-logspline
|
||||||
R-loo
|
R-loo
|
||||||
R-lpSolve
|
R-lpSolve
|
||||||
@@ -662,6 +670,8 @@ R-rasterVis
|
|||||||
R-rbenchmark
|
R-rbenchmark
|
||||||
R-rcmdcheck
|
R-rcmdcheck
|
||||||
R-reactR
|
R-reactR
|
||||||
|
R-reactlog
|
||||||
|
R-readODS
|
||||||
R-readr
|
R-readr
|
||||||
R-readstata13
|
R-readstata13
|
||||||
R-readxl
|
R-readxl
|
||||||
@@ -678,6 +688,7 @@ R-reprex
|
|||||||
R-reshape
|
R-reshape
|
||||||
R-reshape2
|
R-reshape2
|
||||||
R-reticulate
|
R-reticulate
|
||||||
|
R-rex
|
||||||
R-rgenoud
|
R-rgenoud
|
||||||
R-rgeos
|
R-rgeos
|
||||||
R-rgl
|
R-rgl
|
||||||
@@ -690,6 +701,7 @@ R-rjags
|
|||||||
R-rjstat
|
R-rjstat
|
||||||
R-rlang
|
R-rlang
|
||||||
R-rmarkdown
|
R-rmarkdown
|
||||||
|
R-rmatio
|
||||||
R-rms
|
R-rms
|
||||||
R-rmutil
|
R-rmutil
|
||||||
R-rncl
|
R-rncl
|
||||||
@@ -711,6 +723,7 @@ R-rsdmx
|
|||||||
R-rstan
|
R-rstan
|
||||||
R-rstanarm
|
R-rstanarm
|
||||||
R-rstantools
|
R-rstantools
|
||||||
|
R-rstudio
|
||||||
R-rstudioapi
|
R-rstudioapi
|
||||||
R-rsvg
|
R-rsvg
|
||||||
R-runjags
|
R-runjags
|
||||||
@@ -770,6 +783,7 @@ R-startupmsg
|
|||||||
R-statip
|
R-statip
|
||||||
R-statmod
|
R-statmod
|
||||||
R-statnet.common
|
R-statnet.common
|
||||||
|
R-stringdist
|
||||||
R-stringi
|
R-stringi
|
||||||
R-stringr
|
R-stringr
|
||||||
R-strucchange
|
R-strucchange
|
||||||
@@ -825,6 +839,7 @@ R-varImp
|
|||||||
R-vcd
|
R-vcd
|
||||||
R-vcdExtra
|
R-vcdExtra
|
||||||
R-vcr
|
R-vcr
|
||||||
|
R-vctrs
|
||||||
R-vegan
|
R-vegan
|
||||||
R-vioplot
|
R-vioplot
|
||||||
R-viridis
|
R-viridis
|
||||||
@@ -862,6 +877,8 @@ SDL_image
|
|||||||
SDL_mixer
|
SDL_mixer
|
||||||
SDL_net
|
SDL_net
|
||||||
SDL_ttf
|
SDL_ttf
|
||||||
|
SFCGAL
|
||||||
|
SFML
|
||||||
SPIRV-Headers
|
SPIRV-Headers
|
||||||
SPIRV-Tools
|
SPIRV-Tools
|
||||||
SQLAlchemy
|
SQLAlchemy
|
||||||
@@ -874,6 +891,7 @@ SuiteSparse
|
|||||||
Tempita
|
Tempita
|
||||||
Theano
|
Theano
|
||||||
Thunar
|
Thunar
|
||||||
|
UCD
|
||||||
UkPostcodeParser
|
UkPostcodeParser
|
||||||
Unidecode
|
Unidecode
|
||||||
Uranium
|
Uranium
|
||||||
@@ -961,8 +979,10 @@ aniso8601
|
|||||||
ansible
|
ansible
|
||||||
anyjson
|
anyjson
|
||||||
apache-ant
|
apache-ant
|
||||||
|
apache-flink
|
||||||
apache-hadoop
|
apache-hadoop
|
||||||
apache-kafka
|
apache-kafka
|
||||||
|
apache-libcloud
|
||||||
apache-maven
|
apache-maven
|
||||||
apache-spark
|
apache-spark
|
||||||
apache-zookeeper
|
apache-zookeeper
|
||||||
@@ -977,8 +997,10 @@ argcomplete
|
|||||||
argon2
|
argon2
|
||||||
argon2_cffi
|
argon2_cffi
|
||||||
argparse
|
argparse
|
||||||
|
aria2
|
||||||
ark
|
ark
|
||||||
armadillo
|
armadillo
|
||||||
|
arp-scan
|
||||||
artikulate
|
artikulate
|
||||||
asciidoc
|
asciidoc
|
||||||
asciinema
|
asciinema
|
||||||
@@ -1004,6 +1026,8 @@ atomicwrites
|
|||||||
attica
|
attica
|
||||||
attr
|
attr
|
||||||
attrs
|
attrs
|
||||||
|
audacious
|
||||||
|
audacious-plugins
|
||||||
audiofile
|
audiofile
|
||||||
audisp-json
|
audisp-json
|
||||||
audit
|
audit
|
||||||
@@ -1079,6 +1103,7 @@ boto
|
|||||||
boto3
|
boto3
|
||||||
botocore
|
botocore
|
||||||
bovo
|
bovo
|
||||||
|
breathe
|
||||||
breeze
|
breeze
|
||||||
breeze-gtk
|
breeze-gtk
|
||||||
breeze-icons
|
breeze-icons
|
||||||
@@ -1106,6 +1131,7 @@ buildreq-kernel
|
|||||||
buildreq-make
|
buildreq-make
|
||||||
buildreq-meson
|
buildreq-meson
|
||||||
buildreq-mvn
|
buildreq-mvn
|
||||||
|
buildreq-php
|
||||||
buildreq-qmake
|
buildreq-qmake
|
||||||
buildreq-scons
|
buildreq-scons
|
||||||
bundle-chroot-builder
|
bundle-chroot-builder
|
||||||
@@ -1124,18 +1150,22 @@ cairo
|
|||||||
cairomm
|
cairomm
|
||||||
calc
|
calc
|
||||||
calendarsupport
|
calendarsupport
|
||||||
|
can-utils
|
||||||
cantarell-fonts
|
cantarell-fonts
|
||||||
cantata
|
cantata
|
||||||
cantor
|
cantor
|
||||||
capnproto
|
capnproto
|
||||||
caribou
|
caribou
|
||||||
case
|
case
|
||||||
|
cassandra
|
||||||
|
cassandra-dep
|
||||||
castellan
|
castellan
|
||||||
casync
|
casync
|
||||||
catch2
|
catch2
|
||||||
catkin
|
catkin
|
||||||
catkin_pkg
|
catkin_pkg
|
||||||
ccache
|
ccache
|
||||||
|
ccid
|
||||||
ceilometer
|
ceilometer
|
||||||
ceph
|
ceph
|
||||||
ceph-deploy
|
ceph-deploy
|
||||||
@@ -1183,6 +1213,7 @@ clr-init
|
|||||||
clr-installer
|
clr-installer
|
||||||
clr-man-pages
|
clr-man-pages
|
||||||
clr-network-troubleshooter
|
clr-network-troubleshooter
|
||||||
|
clr-one-shot-updates
|
||||||
clr-power-tweaks
|
clr-power-tweaks
|
||||||
clr-python-timestamp
|
clr-python-timestamp
|
||||||
clr-pyversion-strip
|
clr-pyversion-strip
|
||||||
@@ -1205,6 +1236,7 @@ cnf
|
|||||||
cni
|
cni
|
||||||
cni-plugins
|
cni-plugins
|
||||||
cockpit
|
cockpit
|
||||||
|
codec2
|
||||||
codecov
|
codecov
|
||||||
cogl
|
cogl
|
||||||
coinmp
|
coinmp
|
||||||
@@ -1231,16 +1263,19 @@ collectl
|
|||||||
colorama
|
colorama
|
||||||
colord
|
colord
|
||||||
colord-gtk
|
colord-gtk
|
||||||
|
columbiad
|
||||||
comedilib
|
comedilib
|
||||||
comfortaa-fonts
|
comfortaa-fonts
|
||||||
commonmark
|
commonmark
|
||||||
compat-SDL2-soname1
|
compat-SDL2-soname1
|
||||||
compat-cryptsetup-soname4
|
compat-cryptsetup-soname4
|
||||||
compat-curl-gnutls-soname4
|
compat-curl-gnutls-soname4
|
||||||
|
compat-double-conversion-soname1
|
||||||
compat-efivar-soname0
|
compat-efivar-soname0
|
||||||
compat-enchant-soname1
|
compat-enchant-soname1
|
||||||
compat-exiv2-soname26
|
compat-exiv2-soname26
|
||||||
compat-fuse-soname2
|
compat-fuse-soname2
|
||||||
|
compat-gdal-soname20
|
||||||
compat-gegl
|
compat-gegl
|
||||||
compat-gegl-0.3
|
compat-gegl-0.3
|
||||||
compat-glew-soname1
|
compat-glew-soname1
|
||||||
@@ -1252,9 +1287,11 @@ compat-hdf5-soname10
|
|||||||
compat-hwloc-soname5
|
compat-hwloc-soname5
|
||||||
compat-hyperscan-soname4
|
compat-hyperscan-soname4
|
||||||
compat-icu4c-soname61
|
compat-icu4c-soname61
|
||||||
|
compat-icu4c-soname63
|
||||||
compat-ilmbase-soname23
|
compat-ilmbase-soname23
|
||||||
compat-intel-gmmlib-soname1
|
compat-intel-gmmlib-soname1
|
||||||
compat-ipset-soname10
|
compat-ipset-soname10
|
||||||
|
compat-ldc-soname84
|
||||||
compat-libgit2-soname27
|
compat-libgit2-soname27
|
||||||
compat-libical-soname2
|
compat-libical-soname2
|
||||||
compat-libidn-soname11
|
compat-libidn-soname11
|
||||||
@@ -1265,6 +1302,7 @@ compat-libwebp-soname6
|
|||||||
compat-llvm-soname4
|
compat-llvm-soname4
|
||||||
compat-llvm-soname5
|
compat-llvm-soname5
|
||||||
compat-llvm-soname6
|
compat-llvm-soname6
|
||||||
|
compat-llvm-soname7
|
||||||
compat-mariadb-soname18
|
compat-mariadb-soname18
|
||||||
compat-mpfr-soname4
|
compat-mpfr-soname4
|
||||||
compat-opencv-soname32
|
compat-opencv-soname32
|
||||||
@@ -1275,6 +1313,8 @@ compat-openssl-soname-10
|
|||||||
compat-poppler-soname78
|
compat-poppler-soname78
|
||||||
compat-poppler-soname82
|
compat-poppler-soname82
|
||||||
compat-poppler-soname83
|
compat-poppler-soname83
|
||||||
|
compat-poppler-soname86
|
||||||
|
compat-proj-soname13
|
||||||
compat-protobuf-soname14
|
compat-protobuf-soname14
|
||||||
compat-protobuf-soname15
|
compat-protobuf-soname15
|
||||||
compat-python36
|
compat-python36
|
||||||
@@ -1304,6 +1344,7 @@ cpio
|
|||||||
cppcheck
|
cppcheck
|
||||||
cpprestsdk
|
cpprestsdk
|
||||||
cppunit
|
cppunit
|
||||||
|
cppzmq
|
||||||
cpuid
|
cpuid
|
||||||
cpuloadgen
|
cpuloadgen
|
||||||
cracklib
|
cracklib
|
||||||
@@ -1353,6 +1394,81 @@ decorator
|
|||||||
defusedxml
|
defusedxml
|
||||||
dejagnu
|
dejagnu
|
||||||
dejavu-fonts
|
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
|
deprecation
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
desktop-icons
|
desktop-icons
|
||||||
@@ -1417,6 +1533,7 @@ dpdk
|
|||||||
dracut
|
dracut
|
||||||
dragon
|
dragon
|
||||||
drkonqi
|
drkonqi
|
||||||
|
dssi
|
||||||
dstat
|
dstat
|
||||||
dtc
|
dtc
|
||||||
dtopt
|
dtopt
|
||||||
@@ -1434,6 +1551,7 @@ edk2
|
|||||||
efibootmgr
|
efibootmgr
|
||||||
efitools
|
efitools
|
||||||
efivar
|
efivar
|
||||||
|
efl
|
||||||
eigen
|
eigen
|
||||||
elasticsearch
|
elasticsearch
|
||||||
elasticsearch-dep
|
elasticsearch-dep
|
||||||
@@ -1443,23 +1561,29 @@ elfutils
|
|||||||
elixir
|
elixir
|
||||||
ell
|
ell
|
||||||
emacs
|
emacs
|
||||||
|
emacs-x11
|
||||||
embree
|
embree
|
||||||
empy
|
empy
|
||||||
enchant
|
enchant
|
||||||
|
enlightenment
|
||||||
entrypoints
|
entrypoints
|
||||||
enum34
|
enum34
|
||||||
envs
|
envs
|
||||||
eog
|
eog
|
||||||
eog-plugins
|
eog-plugins
|
||||||
epm
|
epm
|
||||||
|
epydoc
|
||||||
eternalegypt
|
eternalegypt
|
||||||
ethtool
|
ethtool
|
||||||
|
etr
|
||||||
|
evdev
|
||||||
eventlet
|
eventlet
|
||||||
eventviews
|
eventviews
|
||||||
evince
|
evince
|
||||||
evolution
|
evolution
|
||||||
evolution-data-server
|
evolution-data-server
|
||||||
evolution-ews
|
evolution-ews
|
||||||
|
evtest
|
||||||
execnet
|
execnet
|
||||||
exempi
|
exempi
|
||||||
exiv2
|
exiv2
|
||||||
@@ -1469,6 +1593,7 @@ expect
|
|||||||
extra-cmake-modules
|
extra-cmake-modules
|
||||||
extras
|
extras
|
||||||
f2fs-tools
|
f2fs-tools
|
||||||
|
faas-cli
|
||||||
faba-icon-theme
|
faba-icon-theme
|
||||||
fakeroot
|
fakeroot
|
||||||
fann
|
fann
|
||||||
@@ -1476,11 +1601,13 @@ fann2
|
|||||||
farstream
|
farstream
|
||||||
fasteners
|
fasteners
|
||||||
fastimport
|
fastimport
|
||||||
|
fastnumbers
|
||||||
fcgi
|
fcgi
|
||||||
fcoe-utils
|
fcoe-utils
|
||||||
fdm_materials
|
fdm_materials
|
||||||
feh
|
feh
|
||||||
fetchmail
|
fetchmail
|
||||||
|
ffmpegthumbs
|
||||||
fftw
|
fftw
|
||||||
file
|
file
|
||||||
file-roller
|
file-roller
|
||||||
@@ -1508,9 +1635,11 @@ flatpak
|
|||||||
flatpak-builder
|
flatpak-builder
|
||||||
fldigi
|
fldigi
|
||||||
flex
|
flex
|
||||||
|
flink-dep
|
||||||
flmsg
|
flmsg
|
||||||
flnet
|
flnet
|
||||||
fltk
|
fltk
|
||||||
|
fluidsynth
|
||||||
folks
|
folks
|
||||||
font-util
|
font-util
|
||||||
fontconfig
|
fontconfig
|
||||||
@@ -1518,6 +1647,7 @@ fontforge
|
|||||||
fonttools
|
fonttools
|
||||||
fossil
|
fossil
|
||||||
frameworkintegration
|
frameworkintegration
|
||||||
|
freedv
|
||||||
freeglut
|
freeglut
|
||||||
freeipmi
|
freeipmi
|
||||||
freetype
|
freetype
|
||||||
@@ -1541,6 +1671,8 @@ gawk
|
|||||||
gc
|
gc
|
||||||
gcab
|
gcab
|
||||||
gcc
|
gcc
|
||||||
|
gcc7
|
||||||
|
gcc8
|
||||||
gcompris-qt
|
gcompris-qt
|
||||||
gcr
|
gcr
|
||||||
gcs-oauth2-boto-plugin
|
gcs-oauth2-boto-plugin
|
||||||
@@ -1564,8 +1696,10 @@ gexiv2
|
|||||||
gfbgraph
|
gfbgraph
|
||||||
gflags
|
gflags
|
||||||
gftp
|
gftp
|
||||||
|
ghc
|
||||||
ghostscript
|
ghostscript
|
||||||
gimp
|
gimp
|
||||||
|
girara
|
||||||
git
|
git
|
||||||
git-gui
|
git-gui
|
||||||
gitdb2
|
gitdb2
|
||||||
@@ -1598,6 +1732,7 @@ gnome-applets
|
|||||||
gnome-autoar
|
gnome-autoar
|
||||||
gnome-backgrounds
|
gnome-backgrounds
|
||||||
gnome-bluetooth
|
gnome-bluetooth
|
||||||
|
gnome-boxes
|
||||||
gnome-calculator
|
gnome-calculator
|
||||||
gnome-calendar
|
gnome-calendar
|
||||||
gnome-characters
|
gnome-characters
|
||||||
@@ -1655,6 +1790,7 @@ gperf
|
|||||||
gperftools
|
gperftools
|
||||||
gpgme
|
gpgme
|
||||||
gphoto2
|
gphoto2
|
||||||
|
gpm
|
||||||
gpredict
|
gpredict
|
||||||
gptfdisk
|
gptfdisk
|
||||||
gradle
|
gradle
|
||||||
@@ -1674,8 +1810,10 @@ grilo-plugins
|
|||||||
groff
|
groff
|
||||||
grpcio
|
grpcio
|
||||||
grub
|
grub
|
||||||
|
gsequencer
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
gsl
|
gsl
|
||||||
|
gsm
|
||||||
gsound
|
gsound
|
||||||
gspell
|
gspell
|
||||||
gst-plugins-bad
|
gst-plugins-bad
|
||||||
@@ -1695,6 +1833,7 @@ gtkmm2
|
|||||||
gtkmm3
|
gtkmm3
|
||||||
gtksourceview
|
gtksourceview
|
||||||
gtkspell3
|
gtkspell3
|
||||||
|
gtkwave
|
||||||
guile
|
guile
|
||||||
gupnp-av
|
gupnp-av
|
||||||
gutenprint
|
gutenprint
|
||||||
@@ -1710,7 +1849,9 @@ hammock
|
|||||||
haproxy
|
haproxy
|
||||||
hardlink
|
hardlink
|
||||||
harfbuzz
|
harfbuzz
|
||||||
|
haskell-random
|
||||||
hdf5
|
hdf5
|
||||||
|
hdmedians
|
||||||
hdparm
|
hdparm
|
||||||
heat
|
heat
|
||||||
helloworld
|
helloworld
|
||||||
@@ -1722,6 +1863,7 @@ hicolor-icon-theme
|
|||||||
hiredis
|
hiredis
|
||||||
hold
|
hold
|
||||||
home-assistant
|
home-assistant
|
||||||
|
home-assistant-frontend
|
||||||
horizon
|
horizon
|
||||||
horovod
|
horovod
|
||||||
hostname
|
hostname
|
||||||
@@ -1748,6 +1890,8 @@ iasimage
|
|||||||
ibus
|
ibus
|
||||||
ibus-libpinyin
|
ibus-libpinyin
|
||||||
ibus-table
|
ibus-table
|
||||||
|
ibus-typing-booster
|
||||||
|
ibus-unikey
|
||||||
icalendar
|
icalendar
|
||||||
icdiff
|
icdiff
|
||||||
iceauth
|
iceauth
|
||||||
@@ -1761,9 +1905,11 @@ iftop
|
|||||||
igt-gpu-tools
|
igt-gpu-tools
|
||||||
ilmbase
|
ilmbase
|
||||||
image
|
image
|
||||||
|
imageio
|
||||||
imagesize
|
imagesize
|
||||||
imapfilter
|
imapfilter
|
||||||
imlib2
|
imlib2
|
||||||
|
importlib_metadata
|
||||||
indent
|
indent
|
||||||
infiniband-diags
|
infiniband-diags
|
||||||
inflection
|
inflection
|
||||||
@@ -1771,6 +1917,7 @@ influxdb
|
|||||||
iniparse
|
iniparse
|
||||||
init-rdahead
|
init-rdahead
|
||||||
inkscape
|
inkscape
|
||||||
|
innoextract
|
||||||
inotify-tools
|
inotify-tools
|
||||||
intel-cmt-cat
|
intel-cmt-cat
|
||||||
intel-compute-runtime
|
intel-compute-runtime
|
||||||
@@ -1828,6 +1975,7 @@ jedi-vim
|
|||||||
jeepney
|
jeepney
|
||||||
jemalloc
|
jemalloc
|
||||||
jmespath
|
jmespath
|
||||||
|
joblib
|
||||||
joe
|
joe
|
||||||
josepy
|
josepy
|
||||||
jq
|
jq
|
||||||
@@ -1841,6 +1989,7 @@ jsonpath-rw-ext
|
|||||||
jsonpointer
|
jsonpointer
|
||||||
jsonrpc-glib
|
jsonrpc-glib
|
||||||
jsonschema
|
jsonschema
|
||||||
|
junit-xml
|
||||||
jupyter
|
jupyter
|
||||||
jupyter-nbgallery
|
jupyter-nbgallery
|
||||||
jupyter-notebook-gist
|
jupyter-notebook-gist
|
||||||
@@ -1856,6 +2005,7 @@ kactivitymanagerd
|
|||||||
kafka-dep
|
kafka-dep
|
||||||
kalarm
|
kalarm
|
||||||
kalarmcal
|
kalarmcal
|
||||||
|
kalgebra
|
||||||
kamera
|
kamera
|
||||||
kanagram
|
kanagram
|
||||||
kapidox
|
kapidox
|
||||||
@@ -1903,6 +2053,7 @@ kde-dev-utils
|
|||||||
kde-gtk-config
|
kde-gtk-config
|
||||||
kdebugsettings
|
kdebugsettings
|
||||||
kdeclarative
|
kdeclarative
|
||||||
|
kdeconnect-kde
|
||||||
kdecoration
|
kdecoration
|
||||||
kded
|
kded
|
||||||
kdeedu-data
|
kdeedu-data
|
||||||
@@ -1947,6 +2098,7 @@ kgeography
|
|||||||
kget
|
kget
|
||||||
kglobalaccel
|
kglobalaccel
|
||||||
kgoldrunner
|
kgoldrunner
|
||||||
|
kgpg
|
||||||
kguiaddons
|
kguiaddons
|
||||||
khal
|
khal
|
||||||
khangman
|
khangman
|
||||||
@@ -2055,7 +2207,13 @@ ktimer
|
|||||||
ktnef
|
ktnef
|
||||||
ktp-approver
|
ktp-approver
|
||||||
ktp-common-internals
|
ktp-common-internals
|
||||||
|
ktp-contact-list
|
||||||
|
ktp-contact-runner
|
||||||
ktp-desktop-applets
|
ktp-desktop-applets
|
||||||
|
ktp-filetransfer-handler
|
||||||
|
ktp-kded-module
|
||||||
|
ktp-send-file
|
||||||
|
ktp-text-ui
|
||||||
ktuberling
|
ktuberling
|
||||||
kturtle
|
kturtle
|
||||||
kubernetes
|
kubernetes
|
||||||
@@ -2073,6 +2231,7 @@ kwrited
|
|||||||
kxmlgui
|
kxmlgui
|
||||||
kxmlrpcclient
|
kxmlrpcclient
|
||||||
kyotocabinet
|
kyotocabinet
|
||||||
|
ladspa_sdk
|
||||||
lark-parser
|
lark-parser
|
||||||
latencytop
|
latencytop
|
||||||
latexcodec
|
latexcodec
|
||||||
@@ -2117,6 +2276,7 @@ libaio
|
|||||||
libappindicator
|
libappindicator
|
||||||
libarchive
|
libarchive
|
||||||
libarchive-c
|
libarchive-c
|
||||||
|
libass
|
||||||
libassuan
|
libassuan
|
||||||
libasyncns
|
libasyncns
|
||||||
libatasmart
|
libatasmart
|
||||||
@@ -2183,6 +2343,7 @@ libgit2-glib
|
|||||||
libglade
|
libglade
|
||||||
libgnome-keyring
|
libgnome-keyring
|
||||||
libgnomekbd
|
libgnomekbd
|
||||||
|
libgovirt
|
||||||
libgpg-error
|
libgpg-error
|
||||||
libgphoto2
|
libgphoto2
|
||||||
libgravatar
|
libgravatar
|
||||||
@@ -2197,6 +2358,7 @@ libidn
|
|||||||
libidn2
|
libidn2
|
||||||
libindicator
|
libindicator
|
||||||
libinput
|
libinput
|
||||||
|
libinstpatch
|
||||||
libiscsi
|
libiscsi
|
||||||
libisofs
|
libisofs
|
||||||
libite
|
libite
|
||||||
@@ -2215,6 +2377,7 @@ libkipi
|
|||||||
libkleo
|
libkleo
|
||||||
libkmahjongg
|
libkmahjongg
|
||||||
libkomparediff2
|
libkomparediff2
|
||||||
|
libksane
|
||||||
libksba
|
libksba
|
||||||
libkscreen
|
libkscreen
|
||||||
libksieve
|
libksieve
|
||||||
@@ -2236,6 +2399,7 @@ libmtp
|
|||||||
libmwaw
|
libmwaw
|
||||||
libmypaint
|
libmypaint
|
||||||
libndp
|
libndp
|
||||||
|
libnetfilter_acct
|
||||||
libnetfilter_conntrack
|
libnetfilter_conntrack
|
||||||
libnetfilter_cthelper
|
libnetfilter_cthelper
|
||||||
libnetfilter_cttimeout
|
libnetfilter_cttimeout
|
||||||
@@ -2270,6 +2434,7 @@ libqmi
|
|||||||
libqtxdg
|
libqtxdg
|
||||||
libqxp
|
libqxp
|
||||||
librabbitmq
|
librabbitmq
|
||||||
|
libreoffice
|
||||||
librepo
|
librepo
|
||||||
librevenge
|
librevenge
|
||||||
librsvg
|
librsvg
|
||||||
@@ -2304,6 +2469,7 @@ libtheora
|
|||||||
libtirpc
|
libtirpc
|
||||||
libtk-img
|
libtk-img
|
||||||
libtool
|
libtool
|
||||||
|
libtorrent-rasterbar
|
||||||
libudev0-shim
|
libudev0-shim
|
||||||
libuev
|
libuev
|
||||||
libuninameslist
|
libuninameslist
|
||||||
@@ -2353,6 +2519,7 @@ linecache2
|
|||||||
links
|
links
|
||||||
linux
|
linux
|
||||||
linux-aws
|
linux-aws
|
||||||
|
linux-current
|
||||||
linux-firmware
|
linux-firmware
|
||||||
linux-firmware-ipu
|
linux-firmware-ipu
|
||||||
linux-gce
|
linux-gce
|
||||||
@@ -2360,14 +2527,17 @@ linux-hyperv
|
|||||||
linux-hyperv-lts
|
linux-hyperv-lts
|
||||||
linux-iot-lts2017-preempt-rt
|
linux-iot-lts2017-preempt-rt
|
||||||
linux-iot-lts2018
|
linux-iot-lts2018
|
||||||
|
linux-iot-lts2018-preempt-rt
|
||||||
|
linux-iot-lts2019
|
||||||
linux-kata
|
linux-kata
|
||||||
linux-kvm
|
linux-kvm
|
||||||
linux-libc-headers
|
linux-libc-headers
|
||||||
linux-lts2017
|
linux-lts2017
|
||||||
linux-lts2018
|
linux-lts2018
|
||||||
|
linux-mainline
|
||||||
linux-networktest
|
linux-networktest
|
||||||
|
linux-next
|
||||||
linux-oracle
|
linux-oracle
|
||||||
linux-pk414-preempt-rt
|
|
||||||
linux-preempt-rt
|
linux-preempt-rt
|
||||||
linux-steam-integration
|
linux-steam-integration
|
||||||
linux-tools
|
linux-tools
|
||||||
@@ -2380,6 +2550,7 @@ lm-sensors
|
|||||||
lmdb
|
lmdb
|
||||||
locket
|
locket
|
||||||
locustio
|
locustio
|
||||||
|
log4cpp
|
||||||
logilab-common
|
logilab-common
|
||||||
logrotate
|
logrotate
|
||||||
logutils
|
logutils
|
||||||
@@ -2395,6 +2566,8 @@ lua
|
|||||||
lua52
|
lua52
|
||||||
lualgi
|
lualgi
|
||||||
luarocks
|
luarocks
|
||||||
|
lutris
|
||||||
|
lv2
|
||||||
lxml
|
lxml
|
||||||
lxqt-about
|
lxqt-about
|
||||||
lxqt-admin
|
lxqt-admin
|
||||||
@@ -2489,7 +2662,9 @@ mpc
|
|||||||
mpfr
|
mpfr
|
||||||
mpg123
|
mpg123
|
||||||
mpi4py
|
mpi4py
|
||||||
|
mpir
|
||||||
mpmath
|
mpmath
|
||||||
|
mpv
|
||||||
mraa
|
mraa
|
||||||
msgpack
|
msgpack
|
||||||
msm
|
msm
|
||||||
@@ -2500,6 +2675,7 @@ msrestazure
|
|||||||
mstflint
|
mstflint
|
||||||
mtd-utils
|
mtd-utils
|
||||||
mtdev
|
mtdev
|
||||||
|
mtools
|
||||||
mtr
|
mtr
|
||||||
multidict
|
multidict
|
||||||
multimon-ng
|
multimon-ng
|
||||||
@@ -2517,10 +2693,12 @@ mycroft-core
|
|||||||
mypaint-brushes
|
mypaint-brushes
|
||||||
mypy
|
mypy
|
||||||
mypy_extensions
|
mypy_extensions
|
||||||
|
mysqltcl
|
||||||
mythes
|
mythes
|
||||||
nagios-plugins
|
nagios-plugins
|
||||||
nano
|
nano
|
||||||
nasm
|
nasm
|
||||||
|
natsort
|
||||||
nautilus
|
nautilus
|
||||||
nbconvert
|
nbconvert
|
||||||
nbformat
|
nbformat
|
||||||
@@ -2539,6 +2717,7 @@ net-tools
|
|||||||
netaddr
|
netaddr
|
||||||
netbase
|
netbase
|
||||||
netcdf
|
netcdf
|
||||||
|
netdata
|
||||||
netdisco
|
netdisco
|
||||||
netifaces
|
netifaces
|
||||||
netkit-telnet
|
netkit-telnet
|
||||||
@@ -2555,7 +2734,9 @@ nfs4-acl-tools
|
|||||||
nftables
|
nftables
|
||||||
nghttp2
|
nghttp2
|
||||||
nginx
|
nginx
|
||||||
|
nginx-mainline
|
||||||
nicstat
|
nicstat
|
||||||
|
nim
|
||||||
ninja
|
ninja
|
||||||
nload
|
nload
|
||||||
nlopt
|
nlopt
|
||||||
@@ -2568,6 +2749,7 @@ nose-cover3
|
|||||||
nose-parameterized
|
nose-parameterized
|
||||||
nosexcover
|
nosexcover
|
||||||
nosync
|
nosync
|
||||||
|
not-ffmpeg
|
||||||
notebook
|
notebook
|
||||||
notmuch
|
notmuch
|
||||||
noto-cjk
|
noto-cjk
|
||||||
@@ -2646,6 +2828,7 @@ os-autoinst
|
|||||||
os-brick
|
os-brick
|
||||||
os-client-config
|
os-client-config
|
||||||
os-ken
|
os-ken
|
||||||
|
os-resource-classes
|
||||||
os-service-types
|
os-service-types
|
||||||
os-testr
|
os-testr
|
||||||
os-traits
|
os-traits
|
||||||
@@ -2715,6 +2898,7 @@ parted
|
|||||||
pass
|
pass
|
||||||
passlib
|
passlib
|
||||||
patch
|
patch
|
||||||
|
patchelf
|
||||||
patchutils
|
patchutils
|
||||||
pathlib
|
pathlib
|
||||||
pathlib2
|
pathlib2
|
||||||
@@ -2727,6 +2911,7 @@ pciutils
|
|||||||
pcmanfm-qt
|
pcmanfm-qt
|
||||||
pcre
|
pcre
|
||||||
pcre2
|
pcre2
|
||||||
|
pcsc-lite
|
||||||
pdns
|
pdns
|
||||||
pdns-recursor
|
pdns-recursor
|
||||||
pecan
|
pecan
|
||||||
@@ -2757,11 +2942,13 @@ perl-Audio-FLAC-Header
|
|||||||
perl-Audio-Musepack
|
perl-Audio-Musepack
|
||||||
perl-Audio-Scan
|
perl-Audio-Scan
|
||||||
perl-Audio-Wav
|
perl-Audio-Wav
|
||||||
|
perl-Authen-SASL
|
||||||
perl-B-Hooks-EndOfScope
|
perl-B-Hooks-EndOfScope
|
||||||
perl-B-Hooks-OP-Check
|
perl-B-Hooks-OP-Check
|
||||||
perl-B-Keywords
|
perl-B-Keywords
|
||||||
perl-BSD-Resource
|
perl-BSD-Resource
|
||||||
perl-Biblio-EndnoteStyle
|
perl-Biblio-EndnoteStyle
|
||||||
|
perl-Bit-Vector
|
||||||
perl-Browser-Open
|
perl-Browser-Open
|
||||||
perl-Business-ISBN
|
perl-Business-ISBN
|
||||||
perl-Business-ISBN-Data
|
perl-Business-ISBN-Data
|
||||||
@@ -2838,6 +3025,7 @@ perl-Curses
|
|||||||
perl-DBD-Pg
|
perl-DBD-Pg
|
||||||
perl-DBD-SQLite
|
perl-DBD-SQLite
|
||||||
perl-DBD-SQLite2
|
perl-DBD-SQLite2
|
||||||
|
perl-DBD-mysql
|
||||||
perl-DBI
|
perl-DBI
|
||||||
perl-DBICx-TestDatabase
|
perl-DBICx-TestDatabase
|
||||||
perl-DBIx-Class
|
perl-DBIx-Class
|
||||||
@@ -2862,10 +3050,12 @@ perl-Data-Page
|
|||||||
perl-Data-Password
|
perl-Data-Password
|
||||||
perl-Data-Printer
|
perl-Data-Printer
|
||||||
perl-Data-Random
|
perl-Data-Random
|
||||||
|
perl-Data-Section
|
||||||
perl-Data-Serializer
|
perl-Data-Serializer
|
||||||
perl-Data-Structure-Util
|
perl-Data-Structure-Util
|
||||||
perl-Data-Uniqid
|
perl-Data-Uniqid
|
||||||
perl-Data-Validate-IP
|
perl-Data-Validate-IP
|
||||||
|
perl-Date-Manip
|
||||||
perl-DateTime
|
perl-DateTime
|
||||||
perl-DateTime-Format-Builder
|
perl-DateTime-Format-Builder
|
||||||
perl-DateTime-Format-DateParse
|
perl-DateTime-Format-DateParse
|
||||||
@@ -3037,6 +3227,7 @@ perl-Inline-C
|
|||||||
perl-JSON
|
perl-JSON
|
||||||
perl-JSON-MaybeXS
|
perl-JSON-MaybeXS
|
||||||
perl-JSON-RPC
|
perl-JSON-RPC
|
||||||
|
perl-JSON-XS
|
||||||
perl-JavaScript-Minifier-XS
|
perl-JavaScript-Minifier-XS
|
||||||
perl-LWP-MediaTypes
|
perl-LWP-MediaTypes
|
||||||
perl-LWP-Protocol-https
|
perl-LWP-Protocol-https
|
||||||
@@ -3212,6 +3403,7 @@ perl-Set-Scalar
|
|||||||
perl-Smart-Comments
|
perl-Smart-Comments
|
||||||
perl-Socket-MsgHdr
|
perl-Socket-MsgHdr
|
||||||
perl-Socket6
|
perl-Socket6
|
||||||
|
perl-Software-License
|
||||||
perl-Sort-Key
|
perl-Sort-Key
|
||||||
perl-Sort-Naturally
|
perl-Sort-Naturally
|
||||||
perl-Sort-Versions
|
perl-Sort-Versions
|
||||||
@@ -3396,6 +3588,13 @@ pexpect
|
|||||||
phonon
|
phonon
|
||||||
phoronix-test-suite
|
phoronix-test-suite
|
||||||
php
|
php
|
||||||
|
php-imagick
|
||||||
|
php-mailparse
|
||||||
|
php-redis
|
||||||
|
php-timezonedb
|
||||||
|
php-xdebug
|
||||||
|
php-yaml
|
||||||
|
php-zip
|
||||||
pickleshare
|
pickleshare
|
||||||
picmi
|
picmi
|
||||||
picocom
|
picocom
|
||||||
@@ -3430,8 +3629,10 @@ plasma-workspace-wallpapers
|
|||||||
pluggy
|
pluggy
|
||||||
ply
|
ply
|
||||||
plzip
|
plzip
|
||||||
|
pm-graph
|
||||||
pmdk
|
pmdk
|
||||||
polkit
|
polkit
|
||||||
|
polkit-kde-agent
|
||||||
polkit-qt
|
polkit-qt
|
||||||
poppler
|
poppler
|
||||||
poppler-data-clr-rename
|
poppler-data-clr-rename
|
||||||
@@ -3440,6 +3641,7 @@ portaudio
|
|||||||
portend
|
portend
|
||||||
positional
|
positional
|
||||||
posix_ipc
|
posix_ipc
|
||||||
|
postgis
|
||||||
postgresql
|
postgresql
|
||||||
potrace
|
potrace
|
||||||
povray
|
povray
|
||||||
@@ -3513,11 +3715,13 @@ pygtkglext
|
|||||||
pyhs100
|
pyhs100
|
||||||
pyinotify
|
pyinotify
|
||||||
pykerberos
|
pykerberos
|
||||||
|
pykwalify
|
||||||
pylama
|
pylama
|
||||||
pyliblzma
|
pyliblzma
|
||||||
pylint
|
pylint
|
||||||
pymemcache
|
pymemcache
|
||||||
pymongo
|
pymongo
|
||||||
|
pyotherside
|
||||||
pyotp
|
pyotp
|
||||||
pypandoc
|
pypandoc
|
||||||
pyparsing
|
pyparsing
|
||||||
@@ -3595,7 +3799,6 @@ python-swiftclient
|
|||||||
python-systemd
|
python-systemd
|
||||||
python-tabulate
|
python-tabulate
|
||||||
python-tappy
|
python-tappy
|
||||||
python-toml
|
|
||||||
python-troveclient
|
python-troveclient
|
||||||
python-urwid
|
python-urwid
|
||||||
python-utils
|
python-utils
|
||||||
@@ -3615,11 +3818,13 @@ pywbem
|
|||||||
pyxattr
|
pyxattr
|
||||||
pyxdg
|
pyxdg
|
||||||
pyzmq
|
pyzmq
|
||||||
|
qbittorrent
|
||||||
qca-qt5
|
qca-qt5
|
||||||
qemu
|
qemu
|
||||||
qemu-guest-additions
|
qemu-guest-additions
|
||||||
qemu-lite
|
qemu-lite
|
||||||
qgit
|
qgit
|
||||||
|
qhull
|
||||||
qml-box2d
|
qml-box2d
|
||||||
qpdf
|
qpdf
|
||||||
qpid-python
|
qpid-python
|
||||||
@@ -3670,8 +3875,11 @@ quazip
|
|||||||
quilt
|
quilt
|
||||||
qwt
|
qwt
|
||||||
rabbitmq-c
|
rabbitmq-c
|
||||||
|
rabbitmq-java-client
|
||||||
|
rabbitmq-java-client-dep
|
||||||
rabbitmq-server
|
rabbitmq-server
|
||||||
radvd
|
radvd
|
||||||
|
rage
|
||||||
ragel
|
ragel
|
||||||
raptor2
|
raptor2
|
||||||
rasqal
|
rasqal
|
||||||
@@ -3686,6 +3894,7 @@ recommonmark
|
|||||||
redis
|
redis
|
||||||
redis-native
|
redis-native
|
||||||
redland
|
redland
|
||||||
|
redshift
|
||||||
redsocks
|
redsocks
|
||||||
renderdoc
|
renderdoc
|
||||||
reno
|
reno
|
||||||
@@ -3726,6 +3935,7 @@ rsync
|
|||||||
rsyslog
|
rsyslog
|
||||||
rt-tests
|
rt-tests
|
||||||
rtkit
|
rtkit
|
||||||
|
rtmpdump
|
||||||
rtslib-fb
|
rtslib-fb
|
||||||
rttr
|
rttr
|
||||||
ruamel-yaml
|
ruamel-yaml
|
||||||
@@ -3747,12 +3957,14 @@ sbc
|
|||||||
sbsigntools
|
sbsigntools
|
||||||
scala
|
scala
|
||||||
scala-dep
|
scala-dep
|
||||||
|
scdoc
|
||||||
scene-alembic
|
scene-alembic
|
||||||
scikit-build
|
scikit-build
|
||||||
scikit-image
|
scikit-image
|
||||||
scikit-learn
|
scikit-learn
|
||||||
scipy
|
scipy
|
||||||
scons
|
scons
|
||||||
|
scowl
|
||||||
screen
|
screen
|
||||||
scripttest
|
scripttest
|
||||||
scrypt
|
scrypt
|
||||||
@@ -3763,6 +3975,7 @@ seaborn
|
|||||||
seahorse
|
seahorse
|
||||||
secretstorage
|
secretstorage
|
||||||
sed
|
sed
|
||||||
|
segno
|
||||||
selenium
|
selenium
|
||||||
semantic_version
|
semantic_version
|
||||||
seqdiag
|
seqdiag
|
||||||
@@ -3772,6 +3985,7 @@ setproctitle
|
|||||||
setserial
|
setserial
|
||||||
setuptools
|
setuptools
|
||||||
setuptools-legacy
|
setuptools-legacy
|
||||||
|
setuptools-markdown
|
||||||
setuptools_scm
|
setuptools_scm
|
||||||
setuptools_scm_git_archive
|
setuptools_scm_git_archive
|
||||||
setxkbmap
|
setxkbmap
|
||||||
@@ -3794,7 +4008,9 @@ smart_open
|
|||||||
smartcols
|
smartcols
|
||||||
smartmontools
|
smartmontools
|
||||||
smmap2
|
smmap2
|
||||||
|
snabb
|
||||||
snappy
|
snappy
|
||||||
|
snitun
|
||||||
snowballstemmer
|
snowballstemmer
|
||||||
socat
|
socat
|
||||||
sof-crosstool-ng
|
sof-crosstool-ng
|
||||||
@@ -3852,6 +4068,7 @@ startup-notification
|
|||||||
statsd
|
statsd
|
||||||
statsmodels
|
statsmodels
|
||||||
stellarium
|
stellarium
|
||||||
|
step
|
||||||
stestr
|
stestr
|
||||||
stevedore
|
stevedore
|
||||||
stow
|
stow
|
||||||
@@ -3864,6 +4081,7 @@ subversion
|
|||||||
sudo
|
sudo
|
||||||
suds-jurko
|
suds-jurko
|
||||||
sundials
|
sundials
|
||||||
|
supertuxkart
|
||||||
sure
|
sure
|
||||||
suricata
|
suricata
|
||||||
svg.path
|
svg.path
|
||||||
@@ -3904,6 +4122,7 @@ telemetrics-client
|
|||||||
telepathy-glib
|
telepathy-glib
|
||||||
telepathy-logger
|
telepathy-logger
|
||||||
telepathy-qt
|
telepathy-qt
|
||||||
|
tempest
|
||||||
tempest-lib
|
tempest-lib
|
||||||
template-glib
|
template-glib
|
||||||
tempora
|
tempora
|
||||||
@@ -3915,7 +4134,10 @@ tensorflow-probability
|
|||||||
termcolor
|
termcolor
|
||||||
terminado
|
terminado
|
||||||
terminaltables
|
terminaltables
|
||||||
|
terminology
|
||||||
terminus-font
|
terminus-font
|
||||||
|
test-generator
|
||||||
|
testdisk
|
||||||
testpath
|
testpath
|
||||||
testrepository
|
testrepository
|
||||||
testresources
|
testresources
|
||||||
@@ -3948,7 +4170,9 @@ tinyxml2
|
|||||||
tiptop
|
tiptop
|
||||||
tk
|
tk
|
||||||
tmux
|
tmux
|
||||||
|
todoist
|
||||||
tokyocabinet
|
tokyocabinet
|
||||||
|
toml
|
||||||
toolz
|
toolz
|
||||||
tooz
|
tooz
|
||||||
tornado
|
tornado
|
||||||
@@ -3974,6 +4198,7 @@ typing_extensions
|
|||||||
tzdata
|
tzdata
|
||||||
tzlocal
|
tzlocal
|
||||||
ua-parser
|
ua-parser
|
||||||
|
uamqp
|
||||||
ucpp
|
ucpp
|
||||||
udisks2
|
udisks2
|
||||||
udunits
|
udunits
|
||||||
@@ -4023,9 +4248,11 @@ virt-manager
|
|||||||
virt-viewer
|
virt-viewer
|
||||||
virtualenv
|
virtualenv
|
||||||
vlc
|
vlc
|
||||||
|
volk
|
||||||
volume_key
|
volume_key
|
||||||
voluptuous
|
voluptuous
|
||||||
voluptuous-serialize
|
voluptuous-serialize
|
||||||
|
vpnc
|
||||||
vsqlite
|
vsqlite
|
||||||
vte
|
vte
|
||||||
waffle
|
waffle
|
||||||
@@ -4047,6 +4274,7 @@ weechat
|
|||||||
weston
|
weston
|
||||||
wget
|
wget
|
||||||
wheel
|
wheel
|
||||||
|
wheelhouse-uploader
|
||||||
which
|
which
|
||||||
whois
|
whois
|
||||||
widgetsnbextension
|
widgetsnbextension
|
||||||
@@ -4057,6 +4285,7 @@ wireshark
|
|||||||
woff2
|
woff2
|
||||||
wok
|
wok
|
||||||
wol
|
wol
|
||||||
|
wordpress
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
wrapt
|
wrapt
|
||||||
wsgi_intercept
|
wsgi_intercept
|
||||||
@@ -4084,7 +4313,6 @@ xdg-user-dirs-gtk
|
|||||||
xdg-utils
|
xdg-utils
|
||||||
xdotool
|
xdotool
|
||||||
xdpyinfo
|
xdpyinfo
|
||||||
xemacs
|
|
||||||
xerces-c
|
xerces-c
|
||||||
xf86-input-evdev
|
xf86-input-evdev
|
||||||
xf86-input-libinput
|
xf86-input-libinput
|
||||||
@@ -4121,6 +4349,7 @@ xkbcomp
|
|||||||
xkeyboard-config
|
xkeyboard-config
|
||||||
xkill
|
xkill
|
||||||
xlog
|
xlog
|
||||||
|
xmlb
|
||||||
xmlrpc-c
|
xmlrpc-c
|
||||||
xmlsec1
|
xmlsec1
|
||||||
xmlstarlet
|
xmlstarlet
|
||||||
@@ -4144,6 +4373,7 @@ xterm
|
|||||||
xtrans
|
xtrans
|
||||||
xvfb-run
|
xvfb-run
|
||||||
xwd
|
xwd
|
||||||
|
xwdrun
|
||||||
xwininfo
|
xwininfo
|
||||||
xz
|
xz
|
||||||
yajl
|
yajl
|
||||||
@@ -4162,14 +4392,17 @@ yum
|
|||||||
yum-metadata-parser
|
yum-metadata-parser
|
||||||
zVMCloudConnector
|
zVMCloudConnector
|
||||||
zake
|
zake
|
||||||
|
zathura
|
||||||
zc.lockfile
|
zc.lockfile
|
||||||
zenity
|
zenity
|
||||||
zeroconf
|
zeroconf
|
||||||
zeroconf-ioslave
|
zeroconf-ioslave
|
||||||
zict
|
zict
|
||||||
zip
|
zip
|
||||||
|
zipp
|
||||||
zlib
|
zlib
|
||||||
znc
|
znc
|
||||||
|
zoneminder
|
||||||
zookeeper-dep
|
zookeeper-dep
|
||||||
zope.component
|
zope.component
|
||||||
zope.configuration
|
zope.configuration
|
||||||
|
|||||||
+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 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", "%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