Compare commits

...

21 Commits

Author SHA1 Message Date
clrbuilder 5322002ad9 Update packages file for version 35090
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-09-30 00:09:49 -07:00
clrbuilder ad8fd73cfe Update packages file for version 35080
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-09-28 00:10:55 -07:00
insilications 347e0e60a5 Fix clear.cfg
- Use jinja expansions for useradd macros.

- Use config_opts['use_bootstrap'] instead of
config_opts['use_bootstrap_container'] (deprecated in 2.4.1)

[Adapted by Patrick McCarty from the analogous patch to the `mock`
package.]

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-09-23 10:39:22 -07:00
clrbuilder 9fea6124da Update packages file for version 35070
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-09-23 00:06:03 -07:00
clrbuilder 50711dae29 Update packages file for version 35060
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-09-21 00:07:18 -07:00
clrbuilder 62dbfd1fa9 Update packages file for version 35050
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-09-16 00:06:02 -07:00
clrbuilder f20c51b4c7 Update packages file for version 35040
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-09-14 00:07:50 -07:00
clrbuilder 39ba8e7488 Update packages file for version 35030
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-09-09 00:07:51 -07:00
Patrick McCarty 3cd143d931 Add make whatrequires target
This target can be used to query direct build and runtime dependencies
of any package in Clear Linux OS. The `make help` documentation
describes the current output format and limitations.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-09-07 16:14:15 -07:00
clrbuilder 8ce1020511 Update packages file for version 35000
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-31 00:06:03 -07:00
clrbuilder c00ea07564 Update packages file for version 34980
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-26 00:07:41 -07:00
clrbuilder 20ac5a6fca Update packages file for version 34970
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-24 00:05:44 -07:00
clrbuilder 3c7ffcc6f8 Update packages file for version 34950
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-19 00:05:29 -07:00
clrbuilder 75f92917fc Update packages file for version 34940
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-17 00:07:02 -07:00
Patrick McCarty ebfb7792fa Update for SPDX 3.14 release
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-08-08 21:31:36 -07:00
Patrick McCarty 151eb80340 Add R-lobstr
New dependency of `R-pryr` 0.1.5

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2021-08-06 09:23:03 -07:00
clrbuilder c35ddf3249 Update packages file for version 34930
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-05 00:07:03 -07:00
clrbuilder 5de267a3aa Update packages file for version 34920
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-03 12:28:57 -07:00
clrbuilder f14316393c Update packages file for version 34910
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-08-03 00:08:04 -07:00
clrbuilder a49ed4739a Update packages file for version 34900
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-07-29 00:06:26 -07:00
clrbuilder 4a7900cd72 Update packages file for version 34870
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2021-07-27 00:07:20 -07:00
4 changed files with 108 additions and 8 deletions
+38
View File
@@ -522,6 +522,44 @@ cloc: $(SRPMFILE)
@$(MOCK) --clean --scrub=chroot --uniqueext=$(PKG_NAME) @$(MOCK) --clean --scrub=chroot --uniqueext=$(PKG_NAME)
cat results/cloc.txt cat results/cloc.txt
.PHONY: whatrequires
#help whatrequires: Output a list of packages that directly depend on this one,
#help showing the subpackage-level breakdown. Each line of output has the format
#help "SUBPACKAGE(|SYMBOL)? <- PACKAGE (ARCH)". If ARCH is "src", the meaning is
#help "PACKAGE has a BuildRequires (build dependency) on SUBPACKAGE". And if ARCH
#help is "x86_64", the meaning is "PACKAGE has a Requires (runtime dependency) on
#help SUBPACKAGE". The optional "|SYMBOL" portion is printed when the symbol
#help required does not match the subpackage name. Note that the ability to query
#help version-qualified dependencies is not yet implemented... (For example, if
#help python3-core provides the version-qualified symbol "python(abi) = 3.9",
#help running `make whatrequires` for `python3` will detect packages that depend on
#help "python(abi)", but not "python(abi) = 3.9".)
whatrequires:
@Q="dnf --config=${PM_CONF} repoquery --quiet --releasever=clear"; \
TMP=$$(mktemp -d); trap "rm -rf $$TMP" EXIT; \
$${Q} --provides ${PKG_NAME} | awk '{ print $$1 }' > $$TMP/${PKG_NAME}; \
( \
while read -r provide; do \
$${Q} --qf="${PKG_NAME} <- %{NAME} (x86_64)" --arch=x86_64 --srpm --whatrequires $$provide; \
$${Q} --qf="${PKG_NAME} <- %{NAME} (src)" --arch=src --whatrequires $$provide; \
done < $$TMP/${PKG_NAME} \
) | awk '$$3 != "${PKG_NAME}"' | LC_COLLATE=C sort -u; \
sed -n 's/^%package *\(.*\)$$/\1/p' ${PKG_NAME}.spec | sort > $$TMP/subpkgs; \
while read -r val; do \
if grep -qE '^-n +' <<< $$val; then \
subpkg=$$(awk '{ print $$2 }' <<< $$val); \
else \
subpkg=${PKG_NAME}-$$val; \
fi; \
$${Q} --provides $$subpkg | awk '{ print $$1 }' > $$TMP/$$subpkg; \
( \
while read -r provide; do \
$${Q} --qf="$$subpkg|$$provide <- %{NAME} (x86_64)" --arch=x86_64 --srpm --whatrequires $$provide; \
$${Q} --qf="$$subpkg|$$provide <- %{NAME} (src)" --arch=src --whatrequires $$provide; \
done < $$TMP/$$subpkg \
) | awk '$$3 != "${PKG_NAME}"' | sed "s/^$$subpkg|\($$subpkg\)/\1/" | LC_COLLATE=C sort -u; \
done < $$TMP/subpkgs
# Define LTS-specific targets in a separate makefile # Define LTS-specific targets in a separate makefile
-include $(TOPLVL)/projects/common/Makefile.common.lts -include $(TOPLVL)/projects/common/Makefile.common.lts
+2 -2
View File
@@ -4,14 +4,14 @@ config_opts['legal_host_arches'] = ('x86_64',)
config_opts['chroot_setup_cmd'] = 'groupinstall build srpm-build' config_opts['chroot_setup_cmd'] = 'groupinstall build srpm-build'
config_opts['dist'] = 'clear' # only useful for --resultdir variable subst config_opts['dist'] = 'clear' # only useful for --resultdir variable subst
config_opts['extra_chroot_dirs'] = [ '/run/lock', ] config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
config_opts['useradd'] = '/usr/sbin/useradd -m -u %(uid)s -g %(gid)s -d %(home)s %(user)s' config_opts['useradd'] = '/usr/sbin/useradd -m -u {{chrootuid}} -g {{chrootgid}} -d {{chroothome}} {{chrootuser}}'
config_opts['plugin_conf']['ccache_enable'] = False config_opts['plugin_conf']['ccache_enable'] = False
config_opts['plugin_conf']['root_cache_opts']['compress_program'] = 'zstd -5' config_opts['plugin_conf']['root_cache_opts']['compress_program'] = 'zstd -5'
config_opts['plugin_conf']['root_cache_opts']['extension'] = '.zst' config_opts['plugin_conf']['root_cache_opts']['extension'] = '.zst'
config_opts['releasever'] = 'clear' config_opts['releasever'] = 'clear'
config_opts['package_manager'] = 'dnf' config_opts['package_manager'] = 'dnf'
config_opts['chrootgroup'] = 'mockbuild' config_opts['chrootgroup'] = 'mockbuild'
config_opts['use_bootstrap_container'] = False config_opts['use_bootstrap'] = False
config_opts['dnf.conf'] = """ config_opts['dnf.conf'] = """
+14
View File
@@ -72,30 +72,40 @@ CATOSL-1.1
CC-BY-1.0 CC-BY-1.0
CC-BY-2.0 CC-BY-2.0
CC-BY-2.5 CC-BY-2.5
CC-BY-2.5-AU
CC-BY-3.0 CC-BY-3.0
CC-BY-3.0-AT CC-BY-3.0-AT
CC-BY-3.0-DE
CC-BY-3.0-NL
CC-BY-3.0-US CC-BY-3.0-US
CC-BY-4.0 CC-BY-4.0
CC-BY-NC-1.0 CC-BY-NC-1.0
CC-BY-NC-2.0 CC-BY-NC-2.0
CC-BY-NC-2.5 CC-BY-NC-2.5
CC-BY-NC-3.0 CC-BY-NC-3.0
CC-BY-NC-3.0-DE
CC-BY-NC-4.0 CC-BY-NC-4.0
CC-BY-NC-ND-1.0 CC-BY-NC-ND-1.0
CC-BY-NC-ND-2.0 CC-BY-NC-ND-2.0
CC-BY-NC-ND-2.5 CC-BY-NC-ND-2.5
CC-BY-NC-ND-3.0 CC-BY-NC-ND-3.0
CC-BY-NC-ND-3.0-DE
CC-BY-NC-ND-3.0-IGO CC-BY-NC-ND-3.0-IGO
CC-BY-NC-ND-4.0 CC-BY-NC-ND-4.0
CC-BY-NC-SA-1.0 CC-BY-NC-SA-1.0
CC-BY-NC-SA-2.0 CC-BY-NC-SA-2.0
CC-BY-NC-SA-2.0-FR
CC-BY-NC-SA-2.0-UK
CC-BY-NC-SA-2.5 CC-BY-NC-SA-2.5
CC-BY-NC-SA-3.0 CC-BY-NC-SA-3.0
CC-BY-NC-SA-3.0-DE
CC-BY-NC-SA-3.0-IGO
CC-BY-NC-SA-4.0 CC-BY-NC-SA-4.0
CC-BY-ND-1.0 CC-BY-ND-1.0
CC-BY-ND-2.0 CC-BY-ND-2.0
CC-BY-ND-2.5 CC-BY-ND-2.5
CC-BY-ND-3.0 CC-BY-ND-3.0
CC-BY-ND-3.0-DE
CC-BY-ND-4.0 CC-BY-ND-4.0
CC-BY-SA-1.0 CC-BY-SA-1.0
CC-BY-SA-2.0 CC-BY-SA-2.0
@@ -104,6 +114,7 @@ CC-BY-SA-2.1-JP
CC-BY-SA-2.5 CC-BY-SA-2.5
CC-BY-SA-3.0 CC-BY-SA-3.0
CC-BY-SA-3.0-AT CC-BY-SA-3.0-AT
CC-BY-SA-3.0-DE
CC-BY-SA-4.0 CC-BY-SA-4.0
CC-PDDC CC-PDDC
CC0-1.0 CC0-1.0
@@ -111,6 +122,7 @@ CDDL-1.0
CDDL-1.1 CDDL-1.1
CDL-1.0 CDL-1.0
CDLA-Permissive-1.0 CDLA-Permissive-1.0
CDLA-Permissive-2.0
CDLA-Sharing-1.0 CDLA-Sharing-1.0
CECILL-1.0 CECILL-1.0
CECILL-1.1 CECILL-1.1
@@ -290,6 +302,7 @@ NGPL
NIST-PD NIST-PD
NIST-PD-fallback NIST-PD-fallback
NLOD-1.0 NLOD-1.0
NLOD-2.0
NLPL NLPL
NOSL NOSL
NPL-1.0 NPL-1.0
@@ -341,6 +354,7 @@ OLDAP-2.7
OLDAP-2.8 OLDAP-2.8
OML OML
OPL-1.0 OPL-1.0
OPUBL-1.0
OSET-PL-2.1 OSET-PL-2.1
OSL-1.0 OSL-1.0
OSL-1.1 OSL-1.1
+54 -6
View File
@@ -12,6 +12,7 @@ CopyQ
Cura Cura
CuraEngine CuraEngine
Cython Cython
DML
Django Django
F-Engrave F-Engrave
Flask Flask
@@ -223,6 +224,7 @@ R-ade4
R-adegenet R-adegenet
R-adegraphics R-adegraphics
R-adephylo R-adephylo
R-adespatial
R-afex R-afex
R-alr3 R-alr3
R-analogue R-analogue
@@ -341,6 +343,7 @@ R-dimRed
R-diptest R-diptest
R-distr R-distr
R-distrEx R-distrEx
R-distributional
R-dlm R-dlm
R-doMC R-doMC
R-doMPI R-doMPI
@@ -421,8 +424,10 @@ R-fitdistrplus
R-flashClust R-flashClust
R-flexmix R-flexmix
R-flexsurv R-flexsurv
R-float
R-fontBitstreamVera R-fontBitstreamVera
R-fontLiberation R-fontLiberation
R-fontawesome
R-fontquiver R-fontquiver
R-forcats R-forcats
R-foreach R-foreach
@@ -438,6 +443,7 @@ R-furrr
R-futile.logger R-futile.logger
R-futile.options R-futile.options
R-future R-future
R-future.apply
R-g.data R-g.data
R-gam R-gam
R-gamm4 R-gamm4
@@ -458,6 +464,7 @@ R-getopt
R-ggjoy R-ggjoy
R-ggplot2 R-ggplot2
R-ggplot2movies R-ggplot2movies
R-ggrepel
R-ggridges R-ggridges
R-ggvis R-ggvis
R-gh R-gh
@@ -560,6 +567,7 @@ R-lme4
R-lmerTest R-lmerTest
R-lmom R-lmom
R-lmtest R-lmtest
R-lobstr
R-locfit R-locfit
R-logcondens R-logcondens
R-logger R-logger
@@ -656,6 +664,7 @@ R-parsedate
R-partitions R-partitions
R-party R-party
R-partykit R-partykit
R-patchwork
R-pbapply R-pbapply
R-pbdZMQ R-pbdZMQ
R-pbivnorm R-pbivnorm
@@ -696,6 +705,7 @@ R-polyCub
R-polyclip R-polyclip
R-polycor R-polycor
R-polynom R-polynom
R-posterior
R-prabclus R-prabclus
R-pracma R-pracma
R-praise R-praise
@@ -709,6 +719,7 @@ R-profdpm
R-profileModel R-profileModel
R-profmem R-profmem
R-progress R-progress
R-progressr
R-projpred R-projpred
R-promises R-promises
R-proto R-proto
@@ -785,6 +796,7 @@ R-rjson
R-rjstat R-rjstat
R-rlang R-rlang
R-rle R-rle
R-rlecuyer
R-rmarkdown R-rmarkdown
R-rmatio R-rmatio
R-rms R-rms
@@ -929,6 +941,7 @@ R-truncdist
R-truncnorm R-truncnorm
R-tseries R-tseries
R-tsne R-tsne
R-tzdb
R-ucminf R-ucminf
R-units R-units
R-unix R-unix
@@ -943,12 +956,14 @@ R-vcd
R-vcdExtra R-vcdExtra
R-vcr R-vcr
R-vctrs R-vctrs
R-vdiffr
R-vegan R-vegan
R-vembedr R-vembedr
R-vioplot R-vioplot
R-viridis R-viridis
R-viridisLite R-viridisLite
R-visNetwork R-visNetwork
R-vroom
R-waldo R-waldo
R-warp R-warp
R-webfakes R-webfakes
@@ -1059,6 +1074,7 @@ amazon-ssm-agent
amtk amtk
analitza analitza
ansible ansible
ansible-core
antlr4-python3-runtime antlr4-python3-runtime
anyio anyio
apache-ant apache-ant
@@ -1184,6 +1200,7 @@ boto
boto3 boto3
botocore botocore
bovo bovo
bowler
box2d box2d
bpftrace bpftrace
breeze breeze
@@ -1197,6 +1214,7 @@ brotlipy
bsdiff bsdiff
btrfs-progs btrfs-progs
bubblewrap bubblewrap
build
buildreq-R buildreq-R
buildreq-cmake buildreq-cmake
buildreq-configure buildreq-configure
@@ -1249,6 +1267,7 @@ cfitsio
cgdb cgdb
cgit cgit
chardet chardet
charset-normalizer
check check
check-manifest check-manifest
cheese cheese
@@ -1329,20 +1348,19 @@ compat-enchant-soname1
compat-fuse-soname2 compat-fuse-soname2
compat-gcc-10 compat-gcc-10
compat-glibmm-soname24 compat-glibmm-soname24
compat-goocanvas-soname2
compat-gtksourceview-soname3 compat-gtksourceview-soname3
compat-libffi-soname6 compat-libffi-soname6
compat-libpng-soname12 compat-libpng-soname12
compat-libsigc++-soname20 compat-libsigc++-soname20
compat-libsoup-soname-24
compat-libva-soname1 compat-libva-soname1
compat-lua-52 compat-lua-52
compat-lua-53 compat-lua-53
compat-mlt-soname6
compat-nettle-soname7 compat-nettle-soname7
compat-openexr-soname25
compat-pangomm-soname14 compat-pangomm-soname14
compat-readline-soname5 compat-readline-soname5
compat-tracker-soname2.0 compat-tracker-soname2.0
compat-webkitgtk-soname40
complete complete
component component
compute-image-packages compute-image-packages
@@ -1352,6 +1370,7 @@ confuse
conky conky
conmon conmon
connect-proxy connect-proxy
connections
conntrack-tools conntrack-tools
console-autostart console-autostart
containerd containerd
@@ -1499,6 +1518,7 @@ efl
eid-mw eid-mw
eigen eigen
elementary-xfce elementary-xfce
elementpath
elfutils elfutils
elisa elisa
elixir elixir
@@ -1557,6 +1577,7 @@ firecracker
firefox firefox
firewalld firewalld
fish fish
fissix
fixtures fixtures
flac flac
flake8 flake8
@@ -1772,6 +1793,7 @@ gsl
gsm gsm
gsound gsound
gspell gspell
gssapi
gst-plugins-bad gst-plugins-bad
gst-plugins-base gst-plugins-base
gst-plugins-good gst-plugins-good
@@ -1782,6 +1804,7 @@ gstreamer-vaapi
gsutil gsutil
gtk+ gtk+
gtk-doc gtk-doc
gtk-frdp
gtk-vnc gtk-vnc
gtk-xfce-engine gtk-xfce-engine
gtk3 gtk3
@@ -1814,6 +1837,7 @@ help2man
hexchat hexchat
hexedit hexedit
hicolor-icon-theme hicolor-icon-theme
hiredis-c
home-assistant home-assistant
home-assistant-frontend home-assistant-frontend
horovod horovod
@@ -1870,7 +1894,9 @@ imagesize
imapfilter imapfilter
imlib2 imlib2
importlib_metadata importlib_metadata
importlib_resources
indent indent
inflection
influxdb influxdb
iniconfig iniconfig
inih inih
@@ -1949,7 +1975,6 @@ josepy
jpegoptim jpegoptim
jq jq
js8call js8call
jsmin
json-c json-c
json-glib json-glib
json5 json5
@@ -2243,6 +2268,7 @@ libass
libassuan libassuan
libatasmart libatasmart
libatomic_ops libatomic_ops
libavif
libavtp libavtp
libb64 libb64
libblockdev libblockdev
@@ -2305,7 +2331,6 @@ libgee
libgeotiff libgeotiff
libgit2 libgit2
libgit2-glib libgit2-glib
libglade
libgnome-keyring libgnome-keyring
libgnomekbd libgnomekbd
libgpg-error libgpg-error
@@ -2451,6 +2476,7 @@ libudev0-shim
libuninameslist libuninameslist
libunistring libunistring
libunwind libunwind
liburing
libusb libusb
libusb-compat libusb-compat
libuser libuser
@@ -2507,6 +2533,7 @@ linux-libc-headers
linux-lts2017 linux-lts2017
linux-lts2018 linux-lts2018
linux-lts2019 linux-lts2019
linux-lts2020
linux-mainline linux-mainline
linux-oracle linux-oracle
linux-preempt-rt linux-preempt-rt
@@ -2634,12 +2661,14 @@ mokutil
mono mono
monotonic monotonic
more-itertools more-itertools
moreorless
moreutils moreutils
mosh mosh
mosquitto mosquitto
motd-update motd-update
motif motif
mozjs78 mozjs78
mozjs91
mpc mpc
mpfr mpfr
mpg123 mpg123
@@ -3475,6 +3504,7 @@ perl-Statistics-CaseResampling
perl-Storable perl-Storable
perl-Stream-Buffered perl-Stream-Buffered
perl-String-Approx perl-String-Approx
perl-String-CRC32
perl-String-CamelCase perl-String-CamelCase
perl-String-Escape perl-String-Escape
perl-String-Expand perl-String-Expand
@@ -3717,6 +3747,7 @@ php-gnupg
php-hprose php-hprose
php-hrtime php-hrtime
php-igbinary php-igbinary
php-imagick
php-inotify php-inotify
php-jsmin php-jsmin
php-json_post php-json_post
@@ -3796,6 +3827,7 @@ pmdk
pmix pmix
pngcrush pngcrush
po4a po4a
podman
polkit polkit
polkit-kde-agent polkit-kde-agent
polkit-qt polkit-qt
@@ -3811,6 +3843,7 @@ postgis
postgresql postgresql
postgresql11 postgresql11
postgresql12 postgresql12
postgresql13
potrace potrace
powerdevil powerdevil
powerline-fonts powerline-fonts
@@ -3902,6 +3935,7 @@ pytest-asyncio
pytest-cov pytest-cov
pytest-forked pytest-forked
pytest-localserver pytest-localserver
pytest-mock
pytest-randomly pytest-randomly
pytest-repeat pytest-repeat
pytest-rerunfailures pytest-rerunfailures
@@ -3926,6 +3960,7 @@ python-hwinfo
python-jsonrpc-server python-jsonrpc-server
python-kconfiglib python-kconfiglib
python-language-server python-language-server
python-lsp-black
python-lsp-jsonrpc python-lsp-jsonrpc
python-lsp-server python-lsp-server
python-magic python-magic
@@ -3937,6 +3972,8 @@ python-openzwave
python-pkgconfig python-pkgconfig
python-pocketlint python-pocketlint
python-polib python-polib
python-remoto
python-rpm-packaging
python-slip python-slip
python-slugify python-slugify
python-subunit python-subunit
@@ -3972,6 +4009,7 @@ qqc2-desktop-style
qrencode qrencode
qscintilla qscintilla
qsstv qsstv
qstylizer
qt-creator qt-creator
qt3d qt3d
qt5ct qt5ct
@@ -4041,12 +4079,14 @@ reportlab
repoze.lru repoze.lru
requests requests
requests-file requests-file
requests-gssapi
requests-kerberos requests-kerberos
requests-mock requests-mock
requests-ntlm requests-ntlm
requests-oauthlib requests-oauthlib
requests-toolbelt requests-toolbelt
requests-unixsocket requests-unixsocket
resolvelib
responses responses
rest rest
restic restic
@@ -4070,6 +4110,7 @@ rope
rpcbind rpcbind
rpcsvc-proto rpcsvc-proto
rpm rpm
rpm-py-installer
rpmfile rpmfile
rr rr
rrdtool rrdtool
@@ -4258,6 +4299,7 @@ tdb
telemetrics-client telemetrics-client
telepathy-glib telepathy-glib
telepathy-qt telepathy-qt
templated-dictionary
tempora tempora
tensorboard tensorboard
tensorflow tensorflow
@@ -4311,6 +4353,7 @@ tldextract
tmux tmux
tokyocabinet tokyocabinet
toml toml
tomli
tomlkit tomlkit
toolz toolz
tornado tornado
@@ -4329,6 +4372,7 @@ tracker-miners
traefik traefik
traitlets traitlets
tree tree
tree-sitter
twine twine
typed_ast typed_ast
typeguard typeguard
@@ -4370,7 +4414,6 @@ usrbinpython
usrbinvi usrbinvi
utf8cpp utf8cpp
util-linux util-linux
util-linux-man
util-macros util-macros
uwsgi uwsgi
v4l-utils v4l-utils
@@ -4383,11 +4426,13 @@ vim-fugitive
vim-gnupg vim-gnupg
vim-go vim-go
vinagre vinagre
virglrenderer
virt-manager virt-manager
virt-viewer virt-viewer
virtualenv virtualenv
vkd3d vkd3d
vlc vlc
volatile
volume_key volume_key
voluptuous voluptuous
voluptuous-serialize voluptuous-serialize
@@ -4399,6 +4444,7 @@ vsts-cd-manager
vte vte
waffle waffle
waitress waitress
watchdog
wavpack wavpack
wayland wayland
wayland-protocols wayland-protocols
@@ -4488,6 +4534,8 @@ xkill
xl2tpd xl2tpd
xlog xlog
xmlb xmlb
xmldiff
xmlschema
xmlsec1 xmlsec1
xmlstarlet xmlstarlet
xmlto xmlto