Compare commits

..

8 Commits

Author SHA1 Message Date
clrbuilder 61203724ab Update packages file for version 40430
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-12-01 11:56:03 -08:00
clrbuilder 3dfbdf4c58 Update packages file for version 40420
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-11-30 00:06:04 -08:00
clrbuilder e0e5b4b1a7 Update packages file for version 40410
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-11-28 05:38:34 -08:00
clrbuilder b95dd8c67f Update packages file for version 40370
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-11-21 00:06:56 -08:00
Brett T. Warden 8ed4d2d0de Fix regex escaping in vendor.py
Address this warning from Python:
SyntaxWarning: invalid escape sequence '\-'
2023-11-20 12:58:01 -08:00
clrbuilder 023a2da624 Update packages file for version 40360
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-11-16 00:06:50 -08:00
clrbuilder cdd4aeebe2 Update packages file for version 40340
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-11-14 00:07:06 -08:00
clrbuilder ee744332e0 Update packages file for version 40310
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-11-03 09:03:52 -07:00
2 changed files with 17 additions and 2 deletions
+15
View File
@@ -1214,6 +1214,7 @@ capnproto
capslock
capstone
casync
catch2
ccache
ccid
cdparanoia
@@ -1254,6 +1255,7 @@ clr-installer
clr-man-pages
clr-network-troubleshooter
clr-one-shot-updates
clr-optimized-link-scripts
clr-power-tweaks
clr-python-timestamp
clr-pyversion-strip
@@ -1309,6 +1311,7 @@ compat-pangomm-soname14
compat-protobuf-soname29
compat-re2-soname10
compat-readline-soname5
compat-tbb-soname2
compat-tiff-soname5
component
configobj
@@ -1400,6 +1403,7 @@ double-conversion
dovecot
doxygen
dpdk
draco
dracut
dragon
dragonbox
@@ -1909,6 +1913,7 @@ kinit
kio
kio-admin
kio-extras
kirigami-addons
kirigami2
kitemmodels
kitemviews
@@ -2179,6 +2184,7 @@ libkscreen
libksieve
libksysguard
liblangtag
libliftoff
liblogging
libmaxminddb
libmbim
@@ -2354,6 +2360,7 @@ lldpd
llvm
llvm14
llvm15
llvm16
lm-sensors
lmdb
logrotate
@@ -2497,6 +2504,7 @@ ndctl
ndpi
neofetch
neomutt
neon
neovim
net-snmp
net-tools
@@ -2551,6 +2559,7 @@ numactl
numatop
numlockx
numpy-stl
nut
nv-codec-headers
nvme-cli
oath-toolkit
@@ -4059,6 +4068,7 @@ pypi-linkchecker
pypi-linkify_it_py
pypi-livereload
pypi-llfuse
pypi-locate
pypi-locket
pypi-logical_unification
pypi-logilab_common
@@ -4270,6 +4280,7 @@ pypi-pymdown_extensions
pypi-pynacl
pypi-pynetbox
pypi-pynsist
pypi-pynvml
pypi-pyomo
pypi-pyopengl
pypi-pyopenssl
@@ -4364,6 +4375,7 @@ pypi-readtime
pypi-recommonmark
pypi-referencing
pypi-regex
pypi-regress
pypi-reportlab
pypi-repoze.lru
pypi-requests
@@ -4675,6 +4687,7 @@ pyudev
qalculate-gtk
qatlib
qbittorrent
qca
qca-qt5
qcoro
qemu
@@ -4773,6 +4786,7 @@ rapidjson
raptor2
rasqal
rclone
rdfind
rdma-core
re2
re2c
@@ -5153,6 +5167,7 @@ xwayland
xwd
xwdrun
xwininfo
xxHash
xz
yajl
yakuake
+2 -2
View File
@@ -97,8 +97,8 @@ def update_cargo_sources(name, tag):
with open('Makefile', encoding='utf8') as mfile:
for line in mfile.readlines():
if line.startswith('ARCHIVES'):
if re.match(archive_match + '[a-zA-Z0-9_\-.]+\.tar\.xz', line):
new_archives = re.sub(archive_match + '[a-zA-Z0-9_\-.]+\.tar\.xz',
if re.match(archive_match + r'[a-zA-Z0-9_\-.]+\.tar\.xz', line):
new_archives = re.sub(archive_match + r'[a-zA-Z0-9_\-.]+\.tar\.xz',
f"{archive_match}-{tag}.tar.xz\n", line)
else:
new_archives = f"ARCHIVES = {archive_match}-{tag}.tar.xz ./vendor\n"