mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
40 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 |
+14
-3
@@ -186,8 +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 show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ;
|
@git diff | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ;
|
||||||
git show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py ;
|
@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:
|
||||||
@@ -320,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:
|
||||||
@@ -425,11 +428,19 @@ install-debuginfo-local:
|
|||||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||||
sudo cp -a "$$d" $$dest/; \
|
sudo cp -a "$$d" $$dest/; \
|
||||||
done; \
|
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; \
|
dest=/var/cache/debuginfo/src; \
|
||||||
find $$tmpdir/usr/src/debug/ -mindepth 1 -maxdepth 1 2> /dev/null | 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; \
|
||||||
|
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; \
|
sudo rm -rf $$tmpdir; \
|
||||||
echo "done"
|
echo "done"
|
||||||
|
|
||||||
|
|||||||
+9
-4
@@ -226,10 +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}"; \
|
||||||
git show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ; \
|
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||||
git show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py ; \
|
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; \
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ PasteDeploy
|
|||||||
Pillow
|
Pillow
|
||||||
Pint
|
Pint
|
||||||
PyDispatcher
|
PyDispatcher
|
||||||
|
PyICU
|
||||||
PyJWT
|
PyJWT
|
||||||
PyMySQL
|
PyMySQL
|
||||||
PyNaCl
|
PyNaCl
|
||||||
@@ -323,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
|
||||||
@@ -393,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
|
||||||
@@ -436,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
|
||||||
@@ -453,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
|
||||||
@@ -490,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
|
||||||
@@ -664,6 +670,7 @@ R-rbenchmark
|
|||||||
R-rcmdcheck
|
R-rcmdcheck
|
||||||
R-reactR
|
R-reactR
|
||||||
R-reactlog
|
R-reactlog
|
||||||
|
R-readODS
|
||||||
R-readr
|
R-readr
|
||||||
R-readstata13
|
R-readstata13
|
||||||
R-readxl
|
R-readxl
|
||||||
@@ -680,6 +687,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
|
||||||
@@ -692,6 +700,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
|
||||||
@@ -713,6 +722,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
|
||||||
@@ -772,6 +782,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
|
||||||
@@ -827,6 +838,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
|
||||||
@@ -864,6 +876,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
|
||||||
@@ -876,6 +890,7 @@ SuiteSparse
|
|||||||
Tempita
|
Tempita
|
||||||
Theano
|
Theano
|
||||||
Thunar
|
Thunar
|
||||||
|
UCD
|
||||||
UkPostcodeParser
|
UkPostcodeParser
|
||||||
Unidecode
|
Unidecode
|
||||||
Uranium
|
Uranium
|
||||||
@@ -963,8 +978,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
|
||||||
@@ -979,6 +996,7 @@ argcomplete
|
|||||||
argon2
|
argon2
|
||||||
argon2_cffi
|
argon2_cffi
|
||||||
argparse
|
argparse
|
||||||
|
aria2
|
||||||
ark
|
ark
|
||||||
armadillo
|
armadillo
|
||||||
artikulate
|
artikulate
|
||||||
@@ -1143,6 +1161,7 @@ catch2
|
|||||||
catkin
|
catkin
|
||||||
catkin_pkg
|
catkin_pkg
|
||||||
ccache
|
ccache
|
||||||
|
ccid
|
||||||
ceilometer
|
ceilometer
|
||||||
ceph
|
ceph
|
||||||
ceph-deploy
|
ceph-deploy
|
||||||
@@ -1213,6 +1232,7 @@ cnf
|
|||||||
cni
|
cni
|
||||||
cni-plugins
|
cni-plugins
|
||||||
cockpit
|
cockpit
|
||||||
|
codec2
|
||||||
codecov
|
codecov
|
||||||
cogl
|
cogl
|
||||||
coinmp
|
coinmp
|
||||||
@@ -1239,16 +1259,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
|
||||||
@@ -1260,6 +1283,7 @@ 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
|
||||||
@@ -1286,6 +1310,7 @@ compat-poppler-soname78
|
|||||||
compat-poppler-soname82
|
compat-poppler-soname82
|
||||||
compat-poppler-soname83
|
compat-poppler-soname83
|
||||||
compat-poppler-soname86
|
compat-poppler-soname86
|
||||||
|
compat-proj-soname13
|
||||||
compat-protobuf-soname14
|
compat-protobuf-soname14
|
||||||
compat-protobuf-soname15
|
compat-protobuf-soname15
|
||||||
compat-python36
|
compat-python36
|
||||||
@@ -1315,6 +1340,7 @@ cpio
|
|||||||
cppcheck
|
cppcheck
|
||||||
cpprestsdk
|
cpprestsdk
|
||||||
cppunit
|
cppunit
|
||||||
|
cppzmq
|
||||||
cpuid
|
cpuid
|
||||||
cpuloadgen
|
cpuloadgen
|
||||||
cracklib
|
cracklib
|
||||||
@@ -1520,6 +1546,7 @@ edk2
|
|||||||
efibootmgr
|
efibootmgr
|
||||||
efitools
|
efitools
|
||||||
efivar
|
efivar
|
||||||
|
efl
|
||||||
eigen
|
eigen
|
||||||
elasticsearch
|
elasticsearch
|
||||||
elasticsearch-dep
|
elasticsearch-dep
|
||||||
@@ -1529,9 +1556,11 @@ elfutils
|
|||||||
elixir
|
elixir
|
||||||
ell
|
ell
|
||||||
emacs
|
emacs
|
||||||
|
emacs-x11
|
||||||
embree
|
embree
|
||||||
empy
|
empy
|
||||||
enchant
|
enchant
|
||||||
|
enlightenment
|
||||||
entrypoints
|
entrypoints
|
||||||
enum34
|
enum34
|
||||||
envs
|
envs
|
||||||
@@ -1541,12 +1570,15 @@ epm
|
|||||||
epydoc
|
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
|
||||||
@@ -1564,11 +1596,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
|
||||||
@@ -1596,9 +1630,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
|
||||||
@@ -1606,6 +1642,7 @@ fontforge
|
|||||||
fonttools
|
fonttools
|
||||||
fossil
|
fossil
|
||||||
frameworkintegration
|
frameworkintegration
|
||||||
|
freedv
|
||||||
freeglut
|
freeglut
|
||||||
freeipmi
|
freeipmi
|
||||||
freetype
|
freetype
|
||||||
@@ -1629,6 +1666,8 @@ gawk
|
|||||||
gc
|
gc
|
||||||
gcab
|
gcab
|
||||||
gcc
|
gcc
|
||||||
|
gcc7
|
||||||
|
gcc8
|
||||||
gcompris-qt
|
gcompris-qt
|
||||||
gcr
|
gcr
|
||||||
gcs-oauth2-boto-plugin
|
gcs-oauth2-boto-plugin
|
||||||
@@ -1655,6 +1694,7 @@ gftp
|
|||||||
ghc
|
ghc
|
||||||
ghostscript
|
ghostscript
|
||||||
gimp
|
gimp
|
||||||
|
girara
|
||||||
git
|
git
|
||||||
git-gui
|
git-gui
|
||||||
gitdb2
|
gitdb2
|
||||||
@@ -1687,6 +1727,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
|
||||||
@@ -1744,6 +1785,7 @@ gperf
|
|||||||
gperftools
|
gperftools
|
||||||
gpgme
|
gpgme
|
||||||
gphoto2
|
gphoto2
|
||||||
|
gpm
|
||||||
gpredict
|
gpredict
|
||||||
gptfdisk
|
gptfdisk
|
||||||
gradle
|
gradle
|
||||||
@@ -1765,6 +1807,7 @@ grpcio
|
|||||||
grub
|
grub
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
gsl
|
gsl
|
||||||
|
gsm
|
||||||
gsound
|
gsound
|
||||||
gspell
|
gspell
|
||||||
gst-plugins-bad
|
gst-plugins-bad
|
||||||
@@ -1802,6 +1845,7 @@ hardlink
|
|||||||
harfbuzz
|
harfbuzz
|
||||||
haskell-random
|
haskell-random
|
||||||
hdf5
|
hdf5
|
||||||
|
hdmedians
|
||||||
hdparm
|
hdparm
|
||||||
heat
|
heat
|
||||||
helloworld
|
helloworld
|
||||||
@@ -1840,6 +1884,8 @@ iasimage
|
|||||||
ibus
|
ibus
|
||||||
ibus-libpinyin
|
ibus-libpinyin
|
||||||
ibus-table
|
ibus-table
|
||||||
|
ibus-typing-booster
|
||||||
|
ibus-unikey
|
||||||
icalendar
|
icalendar
|
||||||
icdiff
|
icdiff
|
||||||
iceauth
|
iceauth
|
||||||
@@ -1864,6 +1910,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
|
||||||
@@ -1921,6 +1968,7 @@ jedi-vim
|
|||||||
jeepney
|
jeepney
|
||||||
jemalloc
|
jemalloc
|
||||||
jmespath
|
jmespath
|
||||||
|
joblib
|
||||||
joe
|
joe
|
||||||
josepy
|
josepy
|
||||||
jq
|
jq
|
||||||
@@ -1997,6 +2045,7 @@ kde-dev-utils
|
|||||||
kde-gtk-config
|
kde-gtk-config
|
||||||
kdebugsettings
|
kdebugsettings
|
||||||
kdeclarative
|
kdeclarative
|
||||||
|
kdeconnect-kde
|
||||||
kdecoration
|
kdecoration
|
||||||
kded
|
kded
|
||||||
kdeedu-data
|
kdeedu-data
|
||||||
@@ -2150,7 +2199,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
|
||||||
@@ -2212,6 +2267,7 @@ libaio
|
|||||||
libappindicator
|
libappindicator
|
||||||
libarchive
|
libarchive
|
||||||
libarchive-c
|
libarchive-c
|
||||||
|
libass
|
||||||
libassuan
|
libassuan
|
||||||
libasyncns
|
libasyncns
|
||||||
libatasmart
|
libatasmart
|
||||||
@@ -2278,6 +2334,7 @@ libgit2-glib
|
|||||||
libglade
|
libglade
|
||||||
libgnome-keyring
|
libgnome-keyring
|
||||||
libgnomekbd
|
libgnomekbd
|
||||||
|
libgovirt
|
||||||
libgpg-error
|
libgpg-error
|
||||||
libgphoto2
|
libgphoto2
|
||||||
libgravatar
|
libgravatar
|
||||||
@@ -2332,6 +2389,7 @@ libmtp
|
|||||||
libmwaw
|
libmwaw
|
||||||
libmypaint
|
libmypaint
|
||||||
libndp
|
libndp
|
||||||
|
libnetfilter_acct
|
||||||
libnetfilter_conntrack
|
libnetfilter_conntrack
|
||||||
libnetfilter_cthelper
|
libnetfilter_cthelper
|
||||||
libnetfilter_cttimeout
|
libnetfilter_cttimeout
|
||||||
@@ -2401,6 +2459,7 @@ libtheora
|
|||||||
libtirpc
|
libtirpc
|
||||||
libtk-img
|
libtk-img
|
||||||
libtool
|
libtool
|
||||||
|
libtorrent-rasterbar
|
||||||
libudev0-shim
|
libudev0-shim
|
||||||
libuev
|
libuev
|
||||||
libuninameslist
|
libuninameslist
|
||||||
@@ -2450,6 +2509,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
|
||||||
@@ -2464,7 +2524,9 @@ 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-preempt-rt
|
linux-preempt-rt
|
||||||
linux-steam-integration
|
linux-steam-integration
|
||||||
@@ -2478,6 +2540,7 @@ lm-sensors
|
|||||||
lmdb
|
lmdb
|
||||||
locket
|
locket
|
||||||
locustio
|
locustio
|
||||||
|
log4cpp
|
||||||
logilab-common
|
logilab-common
|
||||||
logrotate
|
logrotate
|
||||||
logutils
|
logutils
|
||||||
@@ -2493,6 +2556,7 @@ lua
|
|||||||
lua52
|
lua52
|
||||||
lualgi
|
lualgi
|
||||||
luarocks
|
luarocks
|
||||||
|
lutris
|
||||||
lxml
|
lxml
|
||||||
lxqt-about
|
lxqt-about
|
||||||
lxqt-admin
|
lxqt-admin
|
||||||
@@ -2587,7 +2651,9 @@ mpc
|
|||||||
mpfr
|
mpfr
|
||||||
mpg123
|
mpg123
|
||||||
mpi4py
|
mpi4py
|
||||||
|
mpir
|
||||||
mpmath
|
mpmath
|
||||||
|
mpv
|
||||||
mraa
|
mraa
|
||||||
msgpack
|
msgpack
|
||||||
msm
|
msm
|
||||||
@@ -2598,6 +2664,7 @@ msrestazure
|
|||||||
mstflint
|
mstflint
|
||||||
mtd-utils
|
mtd-utils
|
||||||
mtdev
|
mtdev
|
||||||
|
mtools
|
||||||
mtr
|
mtr
|
||||||
multidict
|
multidict
|
||||||
multimon-ng
|
multimon-ng
|
||||||
@@ -2615,10 +2682,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
|
||||||
@@ -2637,6 +2706,7 @@ net-tools
|
|||||||
netaddr
|
netaddr
|
||||||
netbase
|
netbase
|
||||||
netcdf
|
netcdf
|
||||||
|
netdata
|
||||||
netdisco
|
netdisco
|
||||||
netifaces
|
netifaces
|
||||||
netkit-telnet
|
netkit-telnet
|
||||||
@@ -2655,6 +2725,7 @@ nghttp2
|
|||||||
nginx
|
nginx
|
||||||
nginx-mainline
|
nginx-mainline
|
||||||
nicstat
|
nicstat
|
||||||
|
nim
|
||||||
ninja
|
ninja
|
||||||
nload
|
nload
|
||||||
nlopt
|
nlopt
|
||||||
@@ -2866,6 +2937,7 @@ 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
|
||||||
@@ -3543,6 +3615,7 @@ plasma-workspace-wallpapers
|
|||||||
pluggy
|
pluggy
|
||||||
ply
|
ply
|
||||||
plzip
|
plzip
|
||||||
|
pm-graph
|
||||||
pmdk
|
pmdk
|
||||||
polkit
|
polkit
|
||||||
polkit-kde-agent
|
polkit-kde-agent
|
||||||
@@ -3554,6 +3627,7 @@ portaudio
|
|||||||
portend
|
portend
|
||||||
positional
|
positional
|
||||||
posix_ipc
|
posix_ipc
|
||||||
|
postgis
|
||||||
postgresql
|
postgresql
|
||||||
potrace
|
potrace
|
||||||
povray
|
povray
|
||||||
@@ -3710,7 +3784,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
|
||||||
@@ -3730,11 +3803,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
|
||||||
@@ -3785,8 +3860,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
|
||||||
@@ -3801,6 +3879,7 @@ recommonmark
|
|||||||
redis
|
redis
|
||||||
redis-native
|
redis-native
|
||||||
redland
|
redland
|
||||||
|
redshift
|
||||||
redsocks
|
redsocks
|
||||||
renderdoc
|
renderdoc
|
||||||
reno
|
reno
|
||||||
@@ -3862,12 +3941,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
|
||||||
@@ -3888,6 +3969,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
|
||||||
@@ -4024,6 +4106,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
|
||||||
@@ -4035,7 +4118,10 @@ tensorflow-probability
|
|||||||
termcolor
|
termcolor
|
||||||
terminado
|
terminado
|
||||||
terminaltables
|
terminaltables
|
||||||
|
terminology
|
||||||
terminus-font
|
terminus-font
|
||||||
|
test-generator
|
||||||
|
testdisk
|
||||||
testpath
|
testpath
|
||||||
testrepository
|
testrepository
|
||||||
testresources
|
testresources
|
||||||
@@ -4070,6 +4156,7 @@ tk
|
|||||||
tmux
|
tmux
|
||||||
todoist
|
todoist
|
||||||
tokyocabinet
|
tokyocabinet
|
||||||
|
toml
|
||||||
toolz
|
toolz
|
||||||
tooz
|
tooz
|
||||||
tornado
|
tornado
|
||||||
@@ -4144,9 +4231,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
|
||||||
@@ -4168,6 +4257,7 @@ weechat
|
|||||||
weston
|
weston
|
||||||
wget
|
wget
|
||||||
wheel
|
wheel
|
||||||
|
wheelhouse-uploader
|
||||||
which
|
which
|
||||||
whois
|
whois
|
||||||
widgetsnbextension
|
widgetsnbextension
|
||||||
@@ -4178,6 +4268,7 @@ wireshark
|
|||||||
woff2
|
woff2
|
||||||
wok
|
wok
|
||||||
wol
|
wol
|
||||||
|
wordpress
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
wrapt
|
wrapt
|
||||||
wsgi_intercept
|
wsgi_intercept
|
||||||
@@ -4205,7 +4296,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
|
||||||
@@ -4242,6 +4332,7 @@ xkbcomp
|
|||||||
xkeyboard-config
|
xkeyboard-config
|
||||||
xkill
|
xkill
|
||||||
xlog
|
xlog
|
||||||
|
xmlb
|
||||||
xmlrpc-c
|
xmlrpc-c
|
||||||
xmlsec1
|
xmlsec1
|
||||||
xmlstarlet
|
xmlstarlet
|
||||||
@@ -4265,6 +4356,7 @@ xterm
|
|||||||
xtrans
|
xtrans
|
||||||
xvfb-run
|
xvfb-run
|
||||||
xwd
|
xwd
|
||||||
|
xwdrun
|
||||||
xwininfo
|
xwininfo
|
||||||
xz
|
xz
|
||||||
yajl
|
yajl
|
||||||
@@ -4283,6 +4375,7 @@ yum
|
|||||||
yum-metadata-parser
|
yum-metadata-parser
|
||||||
zVMCloudConnector
|
zVMCloudConnector
|
||||||
zake
|
zake
|
||||||
|
zathura
|
||||||
zc.lockfile
|
zc.lockfile
|
||||||
zenity
|
zenity
|
||||||
zeroconf
|
zeroconf
|
||||||
|
|||||||
+4
-1
@@ -195,7 +195,7 @@ def main():
|
|||||||
with open (filename, "r") as myfile:
|
with open (filename, "r") as myfile:
|
||||||
lines = myfile.readlines()
|
lines = myfile.readlines()
|
||||||
else:
|
else:
|
||||||
output = subprocess.check_output("git show", shell=True).decode("latin-1")
|
output = subprocess.check_output("git format-patch -1 --stdout", shell=True).decode("latin-1")
|
||||||
lines = output.split("\n")
|
lines = output.split("\n")
|
||||||
|
|
||||||
parse_patch(lines)
|
parse_patch(lines)
|
||||||
@@ -205,6 +205,7 @@ def main():
|
|||||||
zap_entire_file("b/.gitignore")
|
zap_entire_file("b/.gitignore")
|
||||||
zap_entire_file("b/upstream")
|
zap_entire_file("b/upstream")
|
||||||
zap_entire_file("b/NEWS")
|
zap_entire_file("b/NEWS")
|
||||||
|
zap_entire_file("b/ChangeLog")
|
||||||
zap_entire_file_end("xz.sig")
|
zap_entire_file_end("xz.sig")
|
||||||
zap_entire_file_end("gz.sig")
|
zap_entire_file_end("gz.sig")
|
||||||
zap_entire_file_end("bz2.sig")
|
zap_entire_file_end("bz2.sig")
|
||||||
@@ -335,6 +336,8 @@ def main():
|
|||||||
zap_plus_line_in_file("symbols")
|
zap_plus_line_in_file("symbols")
|
||||||
zap_plus_line_in_file("symbols32")
|
zap_plus_line_in_file("symbols32")
|
||||||
|
|
||||||
|
zap_entire_file("b/whatrequires")
|
||||||
|
|
||||||
zap_empty_chunks()
|
zap_empty_chunks()
|
||||||
|
|
||||||
print_all()
|
print_all()
|
||||||
|
|||||||
Reference in New Issue
Block a user