mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 |
+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 diff | 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 diff | 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"
|
||||||
|
|
||||||
|
|||||||
+5
-2
@@ -229,8 +229,11 @@ autospecnew: preautospecnew-checks localreponotice
|
|||||||
if [ $$? -eq 0 ]; then \
|
if [ $$? -eq 0 ]; then \
|
||||||
$(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
$(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
||||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||||
python3 $(TOPLVL)/projects/common/patchfilter.py <(git -C $(TOPLVL)/packages/$(NAME) show) > $(TOPLVL)/packages/$(NAME)/for-review.txt; \
|
python3 $(TOPLVL)/projects/common/patchfilter.py <(git -C $(TOPLVL)/packages/$(NAME) format-patch -1 --stdout) > $(TOPLVL)/packages/$(NAME)/for-review.txt; \
|
||||||
python3 $(TOPLVL)/projects/common/patchfilter.py <(git -C $(TOPLVL)/packages/$(NAME) show); \
|
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; \
|
fi; \
|
||||||
else \
|
else \
|
||||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||||
|
|||||||
@@ -457,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
|
||||||
@@ -721,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
|
||||||
@@ -836,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
|
||||||
@@ -873,6 +876,7 @@ SDL_image
|
|||||||
SDL_mixer
|
SDL_mixer
|
||||||
SDL_net
|
SDL_net
|
||||||
SDL_ttf
|
SDL_ttf
|
||||||
|
SFCGAL
|
||||||
SFML
|
SFML
|
||||||
SPIRV-Headers
|
SPIRV-Headers
|
||||||
SPIRV-Tools
|
SPIRV-Tools
|
||||||
@@ -886,6 +890,7 @@ SuiteSparse
|
|||||||
Tempita
|
Tempita
|
||||||
Theano
|
Theano
|
||||||
Thunar
|
Thunar
|
||||||
|
UCD
|
||||||
UkPostcodeParser
|
UkPostcodeParser
|
||||||
Unidecode
|
Unidecode
|
||||||
Uranium
|
Uranium
|
||||||
@@ -975,6 +980,7 @@ anyjson
|
|||||||
apache-ant
|
apache-ant
|
||||||
apache-hadoop
|
apache-hadoop
|
||||||
apache-kafka
|
apache-kafka
|
||||||
|
apache-libcloud
|
||||||
apache-maven
|
apache-maven
|
||||||
apache-spark
|
apache-spark
|
||||||
apache-zookeeper
|
apache-zookeeper
|
||||||
@@ -989,6 +995,7 @@ argcomplete
|
|||||||
argon2
|
argon2
|
||||||
argon2_cffi
|
argon2_cffi
|
||||||
argparse
|
argparse
|
||||||
|
aria2
|
||||||
ark
|
ark
|
||||||
armadillo
|
armadillo
|
||||||
artikulate
|
artikulate
|
||||||
@@ -1224,6 +1231,7 @@ cnf
|
|||||||
cni
|
cni
|
||||||
cni-plugins
|
cni-plugins
|
||||||
cockpit
|
cockpit
|
||||||
|
codec2
|
||||||
codecov
|
codecov
|
||||||
cogl
|
cogl
|
||||||
coinmp
|
coinmp
|
||||||
@@ -1250,16 +1258,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
|
||||||
@@ -1297,6 +1308,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
|
||||||
@@ -1326,6 +1338,7 @@ cpio
|
|||||||
cppcheck
|
cppcheck
|
||||||
cpprestsdk
|
cpprestsdk
|
||||||
cppunit
|
cppunit
|
||||||
|
cppzmq
|
||||||
cpuid
|
cpuid
|
||||||
cpuloadgen
|
cpuloadgen
|
||||||
cracklib
|
cracklib
|
||||||
@@ -1531,6 +1544,7 @@ edk2
|
|||||||
efibootmgr
|
efibootmgr
|
||||||
efitools
|
efitools
|
||||||
efivar
|
efivar
|
||||||
|
efl
|
||||||
eigen
|
eigen
|
||||||
elasticsearch
|
elasticsearch
|
||||||
elasticsearch-dep
|
elasticsearch-dep
|
||||||
@@ -1540,9 +1554,11 @@ elfutils
|
|||||||
elixir
|
elixir
|
||||||
ell
|
ell
|
||||||
emacs
|
emacs
|
||||||
|
emacs-x11
|
||||||
embree
|
embree
|
||||||
empy
|
empy
|
||||||
enchant
|
enchant
|
||||||
|
enlightenment
|
||||||
entrypoints
|
entrypoints
|
||||||
enum34
|
enum34
|
||||||
envs
|
envs
|
||||||
@@ -1553,12 +1569,14 @@ epydoc
|
|||||||
eternalegypt
|
eternalegypt
|
||||||
ethtool
|
ethtool
|
||||||
etr
|
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
|
||||||
@@ -1582,6 +1600,7 @@ fcoe-utils
|
|||||||
fdm_materials
|
fdm_materials
|
||||||
feh
|
feh
|
||||||
fetchmail
|
fetchmail
|
||||||
|
ffmpegthumbs
|
||||||
fftw
|
fftw
|
||||||
file
|
file
|
||||||
file-roller
|
file-roller
|
||||||
@@ -1609,9 +1628,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
|
||||||
@@ -1619,6 +1640,7 @@ fontforge
|
|||||||
fonttools
|
fonttools
|
||||||
fossil
|
fossil
|
||||||
frameworkintegration
|
frameworkintegration
|
||||||
|
freedv
|
||||||
freeglut
|
freeglut
|
||||||
freeipmi
|
freeipmi
|
||||||
freetype
|
freetype
|
||||||
@@ -1642,6 +1664,8 @@ gawk
|
|||||||
gc
|
gc
|
||||||
gcab
|
gcab
|
||||||
gcc
|
gcc
|
||||||
|
gcc7
|
||||||
|
gcc8
|
||||||
gcompris-qt
|
gcompris-qt
|
||||||
gcr
|
gcr
|
||||||
gcs-oauth2-boto-plugin
|
gcs-oauth2-boto-plugin
|
||||||
@@ -1668,6 +1692,7 @@ gftp
|
|||||||
ghc
|
ghc
|
||||||
ghostscript
|
ghostscript
|
||||||
gimp
|
gimp
|
||||||
|
girara
|
||||||
git
|
git
|
||||||
git-gui
|
git-gui
|
||||||
gitdb2
|
gitdb2
|
||||||
@@ -1700,6 +1725,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
|
||||||
@@ -1757,6 +1783,7 @@ gperf
|
|||||||
gperftools
|
gperftools
|
||||||
gpgme
|
gpgme
|
||||||
gphoto2
|
gphoto2
|
||||||
|
gpm
|
||||||
gpredict
|
gpredict
|
||||||
gptfdisk
|
gptfdisk
|
||||||
gradle
|
gradle
|
||||||
@@ -1778,6 +1805,7 @@ grpcio
|
|||||||
grub
|
grub
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
gsl
|
gsl
|
||||||
|
gsm
|
||||||
gsound
|
gsound
|
||||||
gspell
|
gspell
|
||||||
gst-plugins-bad
|
gst-plugins-bad
|
||||||
@@ -1854,6 +1882,8 @@ iasimage
|
|||||||
ibus
|
ibus
|
||||||
ibus-libpinyin
|
ibus-libpinyin
|
||||||
ibus-table
|
ibus-table
|
||||||
|
ibus-typing-booster
|
||||||
|
ibus-unikey
|
||||||
icalendar
|
icalendar
|
||||||
icdiff
|
icdiff
|
||||||
iceauth
|
iceauth
|
||||||
@@ -1878,6 +1908,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
|
||||||
@@ -1935,6 +1966,7 @@ jedi-vim
|
|||||||
jeepney
|
jeepney
|
||||||
jemalloc
|
jemalloc
|
||||||
jmespath
|
jmespath
|
||||||
|
joblib
|
||||||
joe
|
joe
|
||||||
josepy
|
josepy
|
||||||
jq
|
jq
|
||||||
@@ -2011,6 +2043,7 @@ kde-dev-utils
|
|||||||
kde-gtk-config
|
kde-gtk-config
|
||||||
kdebugsettings
|
kdebugsettings
|
||||||
kdeclarative
|
kdeclarative
|
||||||
|
kdeconnect-kde
|
||||||
kdecoration
|
kdecoration
|
||||||
kded
|
kded
|
||||||
kdeedu-data
|
kdeedu-data
|
||||||
@@ -2164,7 +2197,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
|
||||||
@@ -2226,6 +2265,7 @@ libaio
|
|||||||
libappindicator
|
libappindicator
|
||||||
libarchive
|
libarchive
|
||||||
libarchive-c
|
libarchive-c
|
||||||
|
libass
|
||||||
libassuan
|
libassuan
|
||||||
libasyncns
|
libasyncns
|
||||||
libatasmart
|
libatasmart
|
||||||
@@ -2292,6 +2332,7 @@ libgit2-glib
|
|||||||
libglade
|
libglade
|
||||||
libgnome-keyring
|
libgnome-keyring
|
||||||
libgnomekbd
|
libgnomekbd
|
||||||
|
libgovirt
|
||||||
libgpg-error
|
libgpg-error
|
||||||
libgphoto2
|
libgphoto2
|
||||||
libgravatar
|
libgravatar
|
||||||
@@ -2346,6 +2387,7 @@ libmtp
|
|||||||
libmwaw
|
libmwaw
|
||||||
libmypaint
|
libmypaint
|
||||||
libndp
|
libndp
|
||||||
|
libnetfilter_acct
|
||||||
libnetfilter_conntrack
|
libnetfilter_conntrack
|
||||||
libnetfilter_cthelper
|
libnetfilter_cthelper
|
||||||
libnetfilter_cttimeout
|
libnetfilter_cttimeout
|
||||||
@@ -2415,6 +2457,7 @@ libtheora
|
|||||||
libtirpc
|
libtirpc
|
||||||
libtk-img
|
libtk-img
|
||||||
libtool
|
libtool
|
||||||
|
libtorrent-rasterbar
|
||||||
libudev0-shim
|
libudev0-shim
|
||||||
libuev
|
libuev
|
||||||
libuninameslist
|
libuninameslist
|
||||||
@@ -2464,6 +2507,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
|
||||||
@@ -2478,7 +2522,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
|
||||||
@@ -2492,6 +2538,7 @@ lm-sensors
|
|||||||
lmdb
|
lmdb
|
||||||
locket
|
locket
|
||||||
locustio
|
locustio
|
||||||
|
log4cpp
|
||||||
logilab-common
|
logilab-common
|
||||||
logrotate
|
logrotate
|
||||||
logutils
|
logutils
|
||||||
@@ -2507,6 +2554,7 @@ lua
|
|||||||
lua52
|
lua52
|
||||||
lualgi
|
lualgi
|
||||||
luarocks
|
luarocks
|
||||||
|
lutris
|
||||||
lxml
|
lxml
|
||||||
lxqt-about
|
lxqt-about
|
||||||
lxqt-admin
|
lxqt-admin
|
||||||
@@ -2601,6 +2649,7 @@ mpc
|
|||||||
mpfr
|
mpfr
|
||||||
mpg123
|
mpg123
|
||||||
mpi4py
|
mpi4py
|
||||||
|
mpir
|
||||||
mpmath
|
mpmath
|
||||||
mpv
|
mpv
|
||||||
mraa
|
mraa
|
||||||
@@ -2613,6 +2662,7 @@ msrestazure
|
|||||||
mstflint
|
mstflint
|
||||||
mtd-utils
|
mtd-utils
|
||||||
mtdev
|
mtdev
|
||||||
|
mtools
|
||||||
mtr
|
mtr
|
||||||
multidict
|
multidict
|
||||||
multimon-ng
|
multimon-ng
|
||||||
@@ -2654,6 +2704,7 @@ net-tools
|
|||||||
netaddr
|
netaddr
|
||||||
netbase
|
netbase
|
||||||
netcdf
|
netcdf
|
||||||
|
netdata
|
||||||
netdisco
|
netdisco
|
||||||
netifaces
|
netifaces
|
||||||
netkit-telnet
|
netkit-telnet
|
||||||
@@ -2672,6 +2723,7 @@ nghttp2
|
|||||||
nginx
|
nginx
|
||||||
nginx-mainline
|
nginx-mainline
|
||||||
nicstat
|
nicstat
|
||||||
|
nim
|
||||||
ninja
|
ninja
|
||||||
nload
|
nload
|
||||||
nlopt
|
nlopt
|
||||||
@@ -2883,6 +2935,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
|
||||||
@@ -3560,6 +3613,7 @@ plasma-workspace-wallpapers
|
|||||||
pluggy
|
pluggy
|
||||||
ply
|
ply
|
||||||
plzip
|
plzip
|
||||||
|
pm-graph
|
||||||
pmdk
|
pmdk
|
||||||
polkit
|
polkit
|
||||||
polkit-kde-agent
|
polkit-kde-agent
|
||||||
@@ -3571,6 +3625,7 @@ portaudio
|
|||||||
portend
|
portend
|
||||||
positional
|
positional
|
||||||
posix_ipc
|
posix_ipc
|
||||||
|
postgis
|
||||||
postgresql
|
postgresql
|
||||||
potrace
|
potrace
|
||||||
povray
|
povray
|
||||||
@@ -3727,7 +3782,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
|
||||||
@@ -3747,11 +3801,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
|
||||||
@@ -3802,8 +3858,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
|
||||||
@@ -3818,6 +3877,7 @@ recommonmark
|
|||||||
redis
|
redis
|
||||||
redis-native
|
redis-native
|
||||||
redland
|
redland
|
||||||
|
redshift
|
||||||
redsocks
|
redsocks
|
||||||
renderdoc
|
renderdoc
|
||||||
reno
|
reno
|
||||||
@@ -3879,12 +3939,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
|
||||||
@@ -3905,6 +3967,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
|
||||||
@@ -4052,7 +4115,10 @@ tensorflow-probability
|
|||||||
termcolor
|
termcolor
|
||||||
terminado
|
terminado
|
||||||
terminaltables
|
terminaltables
|
||||||
|
terminology
|
||||||
terminus-font
|
terminus-font
|
||||||
|
test-generator
|
||||||
|
testdisk
|
||||||
testpath
|
testpath
|
||||||
testrepository
|
testrepository
|
||||||
testresources
|
testresources
|
||||||
@@ -4087,6 +4153,7 @@ tk
|
|||||||
tmux
|
tmux
|
||||||
todoist
|
todoist
|
||||||
tokyocabinet
|
tokyocabinet
|
||||||
|
toml
|
||||||
toolz
|
toolz
|
||||||
tooz
|
tooz
|
||||||
tornado
|
tornado
|
||||||
@@ -4161,9 +4228,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
|
||||||
@@ -4185,6 +4254,7 @@ weechat
|
|||||||
weston
|
weston
|
||||||
wget
|
wget
|
||||||
wheel
|
wheel
|
||||||
|
wheelhouse-uploader
|
||||||
which
|
which
|
||||||
whois
|
whois
|
||||||
widgetsnbextension
|
widgetsnbextension
|
||||||
@@ -4195,6 +4265,7 @@ wireshark
|
|||||||
woff2
|
woff2
|
||||||
wok
|
wok
|
||||||
wol
|
wol
|
||||||
|
wordpress
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
wrapt
|
wrapt
|
||||||
wsgi_intercept
|
wsgi_intercept
|
||||||
@@ -4222,7 +4293,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
|
||||||
@@ -4259,6 +4329,7 @@ xkbcomp
|
|||||||
xkeyboard-config
|
xkeyboard-config
|
||||||
xkill
|
xkill
|
||||||
xlog
|
xlog
|
||||||
|
xmlb
|
||||||
xmlrpc-c
|
xmlrpc-c
|
||||||
xmlsec1
|
xmlsec1
|
||||||
xmlstarlet
|
xmlstarlet
|
||||||
@@ -4301,6 +4372,7 @@ yum
|
|||||||
yum-metadata-parser
|
yum-metadata-parser
|
||||||
zVMCloudConnector
|
zVMCloudConnector
|
||||||
zake
|
zake
|
||||||
|
zathura
|
||||||
zc.lockfile
|
zc.lockfile
|
||||||
zenity
|
zenity
|
||||||
zeroconf
|
zeroconf
|
||||||
|
|||||||
+1
-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)
|
||||||
|
|||||||
Reference in New Issue
Block a user