Compare commits

..

3 Commits

Author SHA1 Message Date
William Douglas 61a91af0ff Fix logic for detecting new vendor
Missing grouping in vendor .git changed caused detection failures.

Signed-off-by: William Douglas <william.douglas@intel.com>
2023-06-01 15:08:51 -07:00
clrbuilder fc6b90aaa5 Update packages file for version 38830
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-04-18 07:56:02 -07:00
clrbuilder b25ec94cf9 Update packages file for version 38820
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-04-17 13:01:55 -07:00
2 changed files with 6 additions and 22 deletions
+5 -21
View File
@@ -80,6 +80,7 @@ R-DendSer
R-Deriv
R-DescTools
R-DiagrammeR
R-DiceDesign
R-DistributionUtils
R-DoseFinding
R-Ecdat
@@ -319,6 +320,7 @@ R-desc
R-devtools
R-dfoptim
R-diagram
R-dials
R-dichromat
R-diffobj
R-diffusionMap
@@ -2115,7 +2117,6 @@ libffi
libfido2
libfixmath
libfm
libfm-qt
libfontenc
libfreehand
libftdi1
@@ -2171,7 +2172,6 @@ libksieve
libksysguard
liblangtag
liblogging
liblxqt
libmaxminddb
libmbim
libmediaart
@@ -2225,7 +2225,6 @@ libqalculate
libqb
libqmi
libqrtr-glib
libqtxdg
libqxp
libratbag
librdkafka
@@ -2262,7 +2261,6 @@ libstaroffice
libstatgrab
libstemmer_c
libstoragemgmt
libsysstat
libtasn1
libtermkey
libthai
@@ -2369,21 +2367,6 @@ luarocks
lutris
luv
lv2
lxqt-about
lxqt-admin
lxqt-build-tools
lxqt-config
lxqt-globalkeys
lxqt-notificationd
lxqt-openssh-askpass
lxqt-panel
lxqt-policykit
lxqt-powermanagement
lxqt-qtplugin
lxqt-runner
lxqt-session
lxqt-sudo
lxqt-themes
lynx
lz4
lzlib
@@ -2636,7 +2619,6 @@ pavucontrol
pbzip2
pciutils
pcmanfm
pcmanfm-qt
pcp
pcre
pcre2
@@ -4182,6 +4164,7 @@ pypi-pillow
pypi-pint
pypi-pip
pypi-pip_tools
pypi-pipdeptree
pypi-pkgconfig
pypi-pkginfo
pypi-pkgutil_resolve_name
@@ -4582,6 +4565,7 @@ pypi-wrapt
pypi-wsgiproxy2
pypi-wsproto
pypi-wurlitzer
pypi-xcffib
pypi-xgboost
pypi-xmldiff
pypi-xmljson
@@ -4703,7 +4687,6 @@ qtwebchannel
qtwebengine
qtwebsockets
qtx11extras
qtxdg-tools
qtxmlpatterns
quagga
quassel
@@ -4990,6 +4973,7 @@ wine
wireless-regdb-master
wireplumber
wireshark
wl-clipboard
wlroots
wmctrl
woff2
+1 -1
View File
@@ -75,7 +75,7 @@ def update_cargo_vendor(path, name, git):
subprocess.run(f"cp -a {backup_vendor_git} {vendor_git}", cwd=path,
shell=True, check=True)
repo = Repo(vendor_path)
if not len(repo.untracked_files) > 0 or repo.is_dirty():
if not (len(repo.untracked_files) > 0 or repo.is_dirty()):
return False
subprocess.run('git add .', cwd=vendor_path, shell=True, check=True)
subprocess.run('git commit -m "vendor update"', cwd=vendor_path,