Compare commits

..

7 Commits

Author SHA1 Message Date
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
clrbuilder 353042a9bd Update packages file for version 40290
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-11-01 11:20:28 -07:00
2 changed files with 14 additions and 3 deletions
+12 -1
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
@@ -1400,6 +1402,7 @@ double-conversion
dovecot
doxygen
dpdk
draco
dracut
dragon
dragonbox
@@ -2179,6 +2182,7 @@ libkscreen
libksieve
libksysguard
liblangtag
libliftoff
liblogging
libmaxminddb
libmbim
@@ -2346,7 +2350,6 @@ linux-lts2020
linux-lts2021
linux-ltscurrent
linux-ltsprev
linux-oracle
linux-preempt-rt
linux-tools
linuxptp
@@ -2355,6 +2358,7 @@ lldpd
llvm
llvm14
llvm15
llvm16
lm-sensors
lmdb
logrotate
@@ -2498,6 +2502,7 @@ ndctl
ndpi
neofetch
neomutt
neon
neovim
net-snmp
net-tools
@@ -2552,6 +2557,7 @@ numactl
numatop
numlockx
numpy-stl
nut
nv-codec-headers
nvme-cli
oath-toolkit
@@ -4060,6 +4066,7 @@ pypi-linkchecker
pypi-linkify_it_py
pypi-livereload
pypi-llfuse
pypi-locate
pypi-locket
pypi-logical_unification
pypi-logilab_common
@@ -4271,6 +4278,7 @@ pypi-pymdown_extensions
pypi-pynacl
pypi-pynetbox
pypi-pynsist
pypi-pynvml
pypi-pyomo
pypi-pyopengl
pypi-pyopenssl
@@ -4676,6 +4684,7 @@ pyudev
qalculate-gtk
qatlib
qbittorrent
qca
qca-qt5
qcoro
qemu
@@ -4774,6 +4783,7 @@ rapidjson
raptor2
rasqal
rclone
rdfind
rdma-core
re2
re2c
@@ -5154,6 +5164,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"