mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d5cdd5d1c5 | |||
| 806a1f5593 | |||
| b82d61d686 | |||
| d7404ca99d | |||
| c81774a23c | |||
| b1ef20b90b | |||
| b100150ca3 | |||
| 482940952d | |||
| b50fabd346 | |||
| c383979d14 | |||
| 08138ad889 | |||
| b78940d18a | |||
| bb74ceef8d | |||
| 12800a51fa | |||
| 9b445f1116 | |||
| 40898f6ce0 | |||
| 3b4b1b3053 | |||
| e26fd3e022 | |||
| 677fe6cbd5 | |||
| 9e54179aea |
+12
-12
@@ -136,11 +136,11 @@ clean-pkgs-dir: $(PACKAGES_FILE)
|
||||
done
|
||||
@echo "packages directory cleaned";
|
||||
|
||||
clean_PKGS = $(addprefix clean_,$(PKGS))
|
||||
clean_PKGS = $(addprefix clean_,$(PKGS_LOCAL))
|
||||
#help clean: Run 'make clean' for every package.
|
||||
clean: $(clean_PKGS)
|
||||
|
||||
proper_PKGS = $(addprefix proper_,$(PKGS))
|
||||
proper_PKGS = $(addprefix proper_,$(PKGS_LOCAL))
|
||||
#help proper: Run 'make proper' for every package, and purge the local
|
||||
#help repo and image.
|
||||
proper: $(proper_PKGS)
|
||||
@@ -154,34 +154,34 @@ proper: $(proper_PKGS)
|
||||
|
||||
$(clean_PKGS):
|
||||
@echo "cleaning $(patsubst clean_%,%,$@)"
|
||||
-@$(MAKE) -s -j -C $(addprefix packages/,$(patsubst clean_%,%,$@)) clean
|
||||
-@$(MAKE) -s -C $(addprefix packages/,$(patsubst clean_%,%,$@)) clean
|
||||
|
||||
$(proper_PKGS):
|
||||
-@$(MAKE) -s -j -C $(addprefix packages/,$(patsubst proper_%,%,$@)) proper
|
||||
-@$(MAKE) -s -C $(addprefix packages/,$(patsubst proper_%,%,$@)) proper
|
||||
|
||||
#help status: Runs git status for all package repos, thus displaying untracked
|
||||
#help and unstaged files in addition to staged files.
|
||||
status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS))
|
||||
@for p in projects/common $(addprefix packages/,$(PKGS)); do \
|
||||
status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
if [ -d "$$p/.git" ] && [ -n "$$(git -C $$p status -uno --porcelain)" ]; then echo "Uncommitted changes in $$p:"; git -C "$$p" status --short; fi ;\
|
||||
done
|
||||
|
||||
#help diff: Runs git diff for all package repos and displays the output using
|
||||
#help diffstat. Requires that diffstat is installed.
|
||||
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS))
|
||||
@for p in projects/common $(addprefix packages/,$(PKGS)); do \
|
||||
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
(cd $$p ; git status | grep -q 'nothing to commit, working [^ ]* clean' || (echo "Uncommitted changes in: $$p"; git diff |diffstat -p1)) ;\
|
||||
done
|
||||
|
||||
#help versions: Displays the version of each package in the ./packages tree.
|
||||
versions: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS))
|
||||
@for p in $(addprefix packages/,$(PKGS)); do \
|
||||
versions: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
(cd $$p; if ls *.spec &> /dev/null; then rpmspec -q --queryformat '%{NAME}-%{VERSION}\n' *.spec | head -n1; fi) ;\
|
||||
done
|
||||
|
||||
#help releases: Like 'make versions', but also displays the release number.
|
||||
releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS))
|
||||
@for p in $(addprefix packages/,$(PKGS)); do \
|
||||
releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
(cd $$p; if ls *.spec &> /dev/null; then rpmspec -q --queryformat '%{NAME}-%{VERSION}-%{RELEASE}\n' *.spec | head -n1; fi) ;\
|
||||
done
|
||||
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
Babel
|
||||
Botan
|
||||
CUnit
|
||||
Cheetah
|
||||
ConfigArgParse
|
||||
Cython
|
||||
Django
|
||||
Flask
|
||||
FlatBuffers
|
||||
FreeRDP
|
||||
GConf
|
||||
GitPython
|
||||
@@ -32,6 +34,7 @@ Paste
|
||||
PasteDeploy
|
||||
Pillow
|
||||
Pint
|
||||
PyDispatcher
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyWavelets
|
||||
@@ -134,6 +137,7 @@ R-RcppArmadillo
|
||||
R-RcppEigen
|
||||
R-RcppProgress
|
||||
R-RcppRoll
|
||||
R-Rdpack
|
||||
R-Rmpfr
|
||||
R-Rmpi
|
||||
R-Rserve
|
||||
@@ -172,6 +176,7 @@ R-adephylo
|
||||
R-afex
|
||||
R-alr3
|
||||
R-analogue
|
||||
R-animation
|
||||
R-ape
|
||||
R-argparse
|
||||
R-arm
|
||||
@@ -223,6 +228,7 @@ R-cli
|
||||
R-clipr
|
||||
R-clue
|
||||
R-clustMixType
|
||||
R-clusterGeneration
|
||||
R-cmprsk
|
||||
R-cobs
|
||||
R-coda
|
||||
@@ -344,10 +350,13 @@ R-future
|
||||
R-g.data
|
||||
R-gam
|
||||
R-gamm4
|
||||
R-gbRd
|
||||
R-gbm
|
||||
R-gbutils
|
||||
R-gclus
|
||||
R-gdata
|
||||
R-geepack
|
||||
R-geiger
|
||||
R-geometry
|
||||
R-getopt
|
||||
R-ggjoy
|
||||
@@ -482,6 +491,7 @@ R-mvnormtest
|
||||
R-mvoutlier
|
||||
R-mvtnorm
|
||||
R-natserv
|
||||
R-ncbit
|
||||
R-network
|
||||
R-neuralnet
|
||||
R-nleqslv
|
||||
@@ -507,12 +517,14 @@ R-pbivnorm
|
||||
R-pbkrtest
|
||||
R-pbmcapply
|
||||
R-pcaPP
|
||||
R-pcse
|
||||
R-pdfCluster
|
||||
R-permute
|
||||
R-phangorn
|
||||
R-pheatmap
|
||||
R-phylobase
|
||||
R-phylogram
|
||||
R-phytools
|
||||
R-pillar
|
||||
R-pkgKitten
|
||||
R-pkgbuild
|
||||
@@ -548,6 +560,7 @@ R-promises
|
||||
R-proto
|
||||
R-proxy
|
||||
R-pryr
|
||||
R-ps
|
||||
R-pscl
|
||||
R-psy
|
||||
R-psych
|
||||
@@ -670,6 +683,7 @@ R-stringi
|
||||
R-stringr
|
||||
R-strucchange
|
||||
R-styler
|
||||
R-subplex
|
||||
R-subselect
|
||||
R-superpc
|
||||
R-survey
|
||||
@@ -806,12 +820,24 @@ acrn-hypervisor
|
||||
adwaita-icon-theme
|
||||
aeon
|
||||
aioeventlet
|
||||
aiohttp
|
||||
aiohttp-cors
|
||||
akonadi
|
||||
akonadi-calendar
|
||||
akonadi-calendar-tools
|
||||
akonadi-contacts
|
||||
akonadi-mime
|
||||
akonadi-notes
|
||||
akonadi-search
|
||||
akonadiconsole
|
||||
akregator
|
||||
alabaster
|
||||
alembic
|
||||
alsa-lib
|
||||
alsa-plugins
|
||||
alsa-utils
|
||||
amqp
|
||||
analitza
|
||||
ansible
|
||||
anyjson
|
||||
apache-ant
|
||||
@@ -830,16 +856,20 @@ argcomplete
|
||||
argon2
|
||||
argparse
|
||||
ark
|
||||
artikulate
|
||||
asciidoc
|
||||
asio
|
||||
asn1crypto
|
||||
aspell
|
||||
aspell-en
|
||||
aspell-pt_BR
|
||||
assimp
|
||||
astor
|
||||
astral
|
||||
astroid
|
||||
astunparse
|
||||
asv
|
||||
async-timeout
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
@@ -891,17 +921,24 @@ binutils
|
||||
bison
|
||||
bkcharts
|
||||
bleach
|
||||
blinken
|
||||
blinker
|
||||
blktrace
|
||||
bluedevil
|
||||
bluez
|
||||
bluez-qt
|
||||
bmap-tools
|
||||
bndl-lamp-basic
|
||||
bokeh
|
||||
bomber
|
||||
boost
|
||||
borgbackup
|
||||
boto
|
||||
boto3
|
||||
botocore
|
||||
bovo
|
||||
breeze
|
||||
breeze-gtk
|
||||
breeze-icons
|
||||
bridge-utils
|
||||
brotli
|
||||
@@ -917,6 +954,7 @@ buildreq-distutils3
|
||||
buildreq-gnome
|
||||
buildreq-golang
|
||||
buildreq-kde
|
||||
buildreq-kernel
|
||||
buildreq-make
|
||||
buildreq-meson
|
||||
buildreq-mvn
|
||||
@@ -934,7 +972,9 @@ cached-property
|
||||
cachetools
|
||||
cairo
|
||||
cairomm
|
||||
calendarsupport
|
||||
cantarell-fonts
|
||||
cantata
|
||||
capnproto
|
||||
cargo
|
||||
caribou
|
||||
@@ -980,6 +1020,7 @@ clr-avx-tools
|
||||
clr-boot-manager
|
||||
clr-debug-info
|
||||
clr-desktop-defaults
|
||||
clr-find-bundle
|
||||
clr-fwupd-hooks
|
||||
clr-hardware-files
|
||||
clr-init
|
||||
@@ -1091,6 +1132,7 @@ cursive
|
||||
cve-check-tool
|
||||
cxxfilt
|
||||
cycler
|
||||
cyrus-sasl
|
||||
dapl
|
||||
darktable
|
||||
dask
|
||||
@@ -1115,6 +1157,7 @@ dialog
|
||||
diffoscope
|
||||
diffstat
|
||||
diffutils
|
||||
digikam
|
||||
discover
|
||||
dist-pam-configs
|
||||
distro
|
||||
@@ -1141,15 +1184,20 @@ dogpile.cache
|
||||
dogpile.core
|
||||
dogtail
|
||||
dolphin
|
||||
dolphin-plugins
|
||||
dos2unix
|
||||
dosfstools
|
||||
double-conversion
|
||||
dovecot
|
||||
doxygen
|
||||
dpdk
|
||||
dracut
|
||||
dragon
|
||||
drkonqi
|
||||
dstat
|
||||
dtc
|
||||
dulwich
|
||||
dwarves
|
||||
dyskctl
|
||||
e2fsprogs
|
||||
ebtables
|
||||
@@ -1169,10 +1217,13 @@ empy
|
||||
enchant
|
||||
entrypoints
|
||||
enum34
|
||||
envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
ethtool
|
||||
eventlet
|
||||
eventviews
|
||||
evince
|
||||
evolution
|
||||
evolution-data-server
|
||||
@@ -1185,7 +1236,9 @@ expat
|
||||
expect
|
||||
extra-cmake-modules
|
||||
extras
|
||||
f2fs-tools
|
||||
faba-icon-theme
|
||||
fakeroot
|
||||
fann
|
||||
farstream
|
||||
fasteners
|
||||
@@ -1194,6 +1247,7 @@ feh
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
filelight
|
||||
filesystem
|
||||
findutils
|
||||
fio
|
||||
@@ -1222,6 +1276,7 @@ font-adobe-75dpi
|
||||
font-bitstream-type1
|
||||
font-util
|
||||
fontconfig
|
||||
frameworkintegration
|
||||
freeglut
|
||||
freeipmi
|
||||
freetype
|
||||
@@ -1234,6 +1289,7 @@ futures
|
||||
futurist
|
||||
fwupd
|
||||
fwupdate
|
||||
gTTS-token
|
||||
gabbi
|
||||
garcon
|
||||
gast
|
||||
@@ -1343,6 +1399,9 @@ gpredict
|
||||
gptfdisk
|
||||
gradle
|
||||
gradle-dep
|
||||
granatier
|
||||
grantlee
|
||||
grantleetheme
|
||||
graphene
|
||||
graphite
|
||||
graphviz
|
||||
@@ -1382,6 +1441,7 @@ h5py
|
||||
hacking
|
||||
hadoop-dep
|
||||
hamlib
|
||||
haproxy
|
||||
hardlink
|
||||
harfbuzz
|
||||
hdf5
|
||||
@@ -1392,6 +1452,7 @@ help2man
|
||||
hexchat
|
||||
hgtools
|
||||
hicolor-icon-theme
|
||||
home-assistant
|
||||
horizon
|
||||
hostname
|
||||
html5lib
|
||||
@@ -1419,6 +1480,7 @@ iceauth
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
idna-ssl
|
||||
iftop
|
||||
imagesize
|
||||
imapfilter
|
||||
@@ -1466,6 +1528,7 @@ ister
|
||||
itsdangerous
|
||||
itstool
|
||||
iw
|
||||
ixion
|
||||
ixpdimm_sw
|
||||
jansson
|
||||
jaraco.functools
|
||||
@@ -1495,33 +1558,78 @@ jupyterlab
|
||||
jupyterlab_launcher
|
||||
kactivities
|
||||
kactivities-stats
|
||||
kactivitymanagerd
|
||||
kafka-dep
|
||||
kalarm
|
||||
kalarmcal
|
||||
kamera
|
||||
kanagram
|
||||
kapidox
|
||||
kapman
|
||||
kapptemplate
|
||||
karchive
|
||||
kata-image
|
||||
kata-proxy
|
||||
kata-qemu-lite
|
||||
kata-runtime
|
||||
kata-shim
|
||||
kate
|
||||
katomic
|
||||
kauth
|
||||
kazoo
|
||||
kbackup
|
||||
kbd
|
||||
kblackbox
|
||||
kblocks
|
||||
kblog
|
||||
kbookmarks
|
||||
kbounce
|
||||
kbreakout
|
||||
kbruch
|
||||
kcachegrind
|
||||
kcalc
|
||||
kcalcore
|
||||
kcalutils
|
||||
kcharselect
|
||||
kcmutils
|
||||
kcodecs
|
||||
kcolorchooser
|
||||
kcompletion
|
||||
kconfig
|
||||
kconfigwidgets
|
||||
kcontacts
|
||||
kcoreaddons
|
||||
kcrash
|
||||
kcron
|
||||
kdav
|
||||
kdbusaddons
|
||||
kde-cli-tools
|
||||
kde-dev-scripts
|
||||
kde-dev-utils
|
||||
kde-gtk-config
|
||||
kdebugsettings
|
||||
kdeclarative
|
||||
kdecoration
|
||||
kded
|
||||
kdeedu-data
|
||||
kdegraphics-mobipocket
|
||||
kdegraphics-thumbnailers
|
||||
kdelibs4support
|
||||
kdenetwork-filesharing
|
||||
kdepim-apps-libs
|
||||
kdeplasma-addons
|
||||
kdesdk-kioslaves
|
||||
kdesdk-thumbnailers
|
||||
kdesignerplugin
|
||||
kdesu
|
||||
kdf
|
||||
kdiagram
|
||||
kdialog
|
||||
kdiamond
|
||||
kdnssd
|
||||
kdoctools
|
||||
keditbookmarks
|
||||
keepalived
|
||||
keepassxc
|
||||
kemoticons
|
||||
kernel-config
|
||||
@@ -1535,51 +1643,131 @@ keystoneauth1
|
||||
keystonemiddleware
|
||||
keyutils
|
||||
kfilemetadata
|
||||
kfind
|
||||
kfloppy
|
||||
kfourinline
|
||||
kgamma5
|
||||
kgeography
|
||||
kget
|
||||
kglobalaccel
|
||||
kgoldrunner
|
||||
kguiaddons
|
||||
khal
|
||||
khangman
|
||||
khelpcenter
|
||||
kholidays
|
||||
khotkeys
|
||||
khtml
|
||||
ki18n
|
||||
kiconthemes
|
||||
kidentitymanagement
|
||||
kidletime
|
||||
kig
|
||||
kigo
|
||||
killbots
|
||||
kimageformats
|
||||
kimagemapeditor
|
||||
kimap
|
||||
kinfocenter
|
||||
kinit
|
||||
kio
|
||||
kio-extras
|
||||
kirigami2
|
||||
kiriki
|
||||
kitemmodels
|
||||
kitemviews
|
||||
kiten
|
||||
kitinerary
|
||||
kiwisolver
|
||||
kjobwidgets
|
||||
kjs
|
||||
kjsembed
|
||||
kjumpingcube
|
||||
kldap
|
||||
kleopatra
|
||||
klettres
|
||||
klickety
|
||||
klines
|
||||
kmag
|
||||
kmahjongg
|
||||
kmail
|
||||
kmail-account-wizard
|
||||
kmailtransport
|
||||
kmbox
|
||||
kmediaplayer
|
||||
kmenuedit
|
||||
kmime
|
||||
kmines
|
||||
kmod
|
||||
kmousetool
|
||||
kmouth
|
||||
kmplot
|
||||
knavalbattle
|
||||
knetwalk
|
||||
knewstuff
|
||||
knotes
|
||||
knotifications
|
||||
knotifyconfig
|
||||
koji
|
||||
kolf
|
||||
kollision
|
||||
kolourpaint
|
||||
kombu
|
||||
konqueror
|
||||
konquest
|
||||
konsole
|
||||
kontactinterface
|
||||
kpackage
|
||||
kparts
|
||||
kpeople
|
||||
kpimtextedit
|
||||
kpkpass
|
||||
kplotting
|
||||
kpty
|
||||
kqtquickcharts
|
||||
krb5
|
||||
krdc
|
||||
kreversi
|
||||
kross
|
||||
kruler
|
||||
krunner
|
||||
kscreen
|
||||
kscreenlocker
|
||||
kservice
|
||||
kshisen
|
||||
ksirk
|
||||
ksmtp
|
||||
ksnakeduel
|
||||
kspaceduel
|
||||
ksquares
|
||||
ksshaskpass
|
||||
ksudoku
|
||||
ksysguard
|
||||
ksystemlog
|
||||
kteatime
|
||||
ktexteditor
|
||||
ktextwidgets
|
||||
ktimer
|
||||
ktnef
|
||||
ktp-approver
|
||||
ktp-common-internals
|
||||
ktp-desktop-applets
|
||||
ktuberling
|
||||
kturtle
|
||||
kubernetes
|
||||
kunitconversion
|
||||
kwallet
|
||||
kwallet-pam
|
||||
kwalletmanager
|
||||
kwayland
|
||||
kwayland-integration
|
||||
kwidgetsaddons
|
||||
kwin
|
||||
kwindowsystem
|
||||
kwordquiz
|
||||
kwrited
|
||||
kxmlgui
|
||||
kxmlrpcclient
|
||||
latencytop
|
||||
lazy-object-proxy
|
||||
lcms2
|
||||
@@ -1619,7 +1807,9 @@ libXxf86dga
|
||||
libXxf86misc
|
||||
libXxf86vm
|
||||
libabigail
|
||||
libabw
|
||||
libaio
|
||||
libappindicator
|
||||
libarchive
|
||||
libarchive-c
|
||||
libassuan
|
||||
@@ -1633,25 +1823,33 @@ libcanberra
|
||||
libcap
|
||||
libcap-ng
|
||||
libcdio
|
||||
libcdr
|
||||
libcgroup
|
||||
libchamplain
|
||||
libcmis
|
||||
libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libdatrie
|
||||
libdazzle
|
||||
libdbusmenu
|
||||
libdmx
|
||||
libdnf
|
||||
libdrm
|
||||
libe-book
|
||||
libepoxy
|
||||
libepubgen
|
||||
liberasurecode
|
||||
libetonyek
|
||||
libev
|
||||
libevdev
|
||||
libevent
|
||||
libexif
|
||||
libexttextcat
|
||||
libffi
|
||||
libfontenc
|
||||
libfreehand
|
||||
libgcrypt
|
||||
libgd
|
||||
libgdata
|
||||
@@ -1666,6 +1864,7 @@ libgnome-keyring
|
||||
libgnomekbd
|
||||
libgpg-error
|
||||
libgphoto2
|
||||
libgravatar
|
||||
libgsystem
|
||||
libgtop
|
||||
libgudev
|
||||
@@ -1673,19 +1872,37 @@ libgusb
|
||||
libgweather
|
||||
libical
|
||||
libidn
|
||||
libindicator
|
||||
libinput
|
||||
libiscsi
|
||||
libisofs
|
||||
libjpeg-turbo
|
||||
libjpeg-turbo-soname8
|
||||
libkcddb
|
||||
libkcompactdisc
|
||||
libkdegames
|
||||
libkdepim
|
||||
libkeduvocdocument
|
||||
libkexiv2
|
||||
libkgapi
|
||||
libkipi
|
||||
libkleo
|
||||
libkmahjongg
|
||||
libkomparediff2
|
||||
libksba
|
||||
libkscreen
|
||||
libksieve
|
||||
libksysguard
|
||||
liblangtag
|
||||
libmbim
|
||||
libmediaart
|
||||
libmicrohttpd
|
||||
libmnl
|
||||
libmodulemd
|
||||
libmspack
|
||||
libmspub
|
||||
libmtp
|
||||
libmwaw
|
||||
libmypaint
|
||||
libndp
|
||||
libnetfilter_conntrack
|
||||
@@ -1697,9 +1914,14 @@ libnftnl
|
||||
libnice
|
||||
libnl
|
||||
libnotify
|
||||
libnumbertext
|
||||
liboauth
|
||||
libodfgen
|
||||
libogg
|
||||
libopenzwave
|
||||
liborcus
|
||||
libosinfo
|
||||
libpagemaker
|
||||
libpcap
|
||||
libpciaccess
|
||||
libpeas
|
||||
@@ -1708,8 +1930,11 @@ libpng
|
||||
libpthread-stubs
|
||||
libpwquality
|
||||
libqmi
|
||||
libqxp
|
||||
librabbitmq
|
||||
libreoffice
|
||||
librepo
|
||||
librevenge
|
||||
librsvg
|
||||
librtlsdr
|
||||
libsamplerate
|
||||
@@ -1726,6 +1951,7 @@ libspectre
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
libstaroffice
|
||||
libstoragemgmt
|
||||
libtasn1
|
||||
libthai
|
||||
@@ -1744,12 +1970,16 @@ libva-utils
|
||||
libvirt
|
||||
libvirt-glib
|
||||
libvirt-python
|
||||
libvisio
|
||||
libvorbis
|
||||
libvpx
|
||||
libwacom
|
||||
libwebp
|
||||
libwnck
|
||||
libwnck3
|
||||
libwpd
|
||||
libwpg
|
||||
libwps
|
||||
libxcb
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
@@ -1763,6 +1993,7 @@ libxslt
|
||||
libyami
|
||||
libyami-utils
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
linecache2
|
||||
links
|
||||
@@ -1787,9 +2018,12 @@ llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
lokalize
|
||||
lsacpi
|
||||
lshw
|
||||
lskat
|
||||
lsof
|
||||
ltp
|
||||
ltrace
|
||||
@@ -1799,10 +2033,13 @@ lz4
|
||||
lzip
|
||||
lzo
|
||||
m4
|
||||
mailcommon
|
||||
mailimporter
|
||||
make
|
||||
makedepend
|
||||
man-db
|
||||
man-pages
|
||||
marble
|
||||
mariadb
|
||||
mash
|
||||
matplotlib
|
||||
@@ -1811,12 +2048,16 @@ mc
|
||||
mccabe
|
||||
mcelog
|
||||
mdadm
|
||||
mdds
|
||||
media-player-info
|
||||
meld
|
||||
memcached
|
||||
memkind
|
||||
memshrinker
|
||||
mesa
|
||||
mesa-demos
|
||||
meson
|
||||
messagelib
|
||||
metacity
|
||||
metrics-discovery
|
||||
micro-config-drive
|
||||
@@ -1824,6 +2065,7 @@ micro-config-drive-aws
|
||||
micro-config-drive-oci
|
||||
microversion_parse
|
||||
mido
|
||||
milou
|
||||
minetest
|
||||
minetest_game
|
||||
minicom
|
||||
@@ -1836,6 +2078,7 @@ mkosi
|
||||
mobile-broadband-provider-info
|
||||
mock
|
||||
mod_wsgi
|
||||
modemmanager-qt
|
||||
moka-icon-theme
|
||||
mongodict
|
||||
mono
|
||||
@@ -1861,11 +2104,14 @@ msmtp
|
||||
msr-tools
|
||||
mstflint
|
||||
mtdev
|
||||
mtr
|
||||
multidict
|
||||
multimon-ng
|
||||
multipath-tools
|
||||
munch
|
||||
murrine
|
||||
musl
|
||||
mutagen
|
||||
mutt
|
||||
mutter
|
||||
mypaint-brushes
|
||||
@@ -1878,6 +2124,7 @@ nautilus
|
||||
nbconvert
|
||||
nbformat
|
||||
nbsphinx
|
||||
ncdu
|
||||
ncurses
|
||||
ndctl
|
||||
ndg_httpsclient
|
||||
@@ -1888,6 +2135,7 @@ net-tools
|
||||
netaddr
|
||||
netbase
|
||||
netcat
|
||||
netdisco
|
||||
netifaces
|
||||
nettle
|
||||
network-manager-applet
|
||||
@@ -1904,6 +2152,7 @@ nicstat
|
||||
ninja
|
||||
nlopt
|
||||
nltk
|
||||
nmap
|
||||
nodejs
|
||||
nose
|
||||
nose-cov
|
||||
@@ -1922,6 +2171,7 @@ nspr
|
||||
nss
|
||||
nss-altfiles
|
||||
ntfs-3g
|
||||
ntlm-auth
|
||||
numactl
|
||||
numatop
|
||||
numba
|
||||
@@ -1935,6 +2185,7 @@ ocaml
|
||||
ocl-icd
|
||||
octave
|
||||
offlineimap
|
||||
okular
|
||||
olefile
|
||||
onig
|
||||
onnx
|
||||
@@ -1999,13 +2250,17 @@ oslosphinx
|
||||
oslotest
|
||||
osprofiler
|
||||
ostree
|
||||
otp
|
||||
ovirt-guest-agent
|
||||
ovs
|
||||
ovsdbapp
|
||||
oxygen
|
||||
oxygen-icons5
|
||||
p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacrunner
|
||||
palapeli
|
||||
pandas
|
||||
pandoc
|
||||
pandocfilters
|
||||
@@ -2014,6 +2269,7 @@ pangomm
|
||||
parallel
|
||||
parameter-framework
|
||||
paramiko
|
||||
parley
|
||||
parsedatetime
|
||||
parso
|
||||
parted
|
||||
@@ -2616,20 +2872,31 @@ phonon
|
||||
phoronix-test-suite
|
||||
php
|
||||
pickleshare
|
||||
picmi
|
||||
pidgin
|
||||
pidgin-sipe
|
||||
pigz
|
||||
pika
|
||||
pika-pool
|
||||
pim-data-exporter
|
||||
pim-sieve-editor
|
||||
pimcommon
|
||||
pinentry
|
||||
pip
|
||||
pip-legacy
|
||||
pixman
|
||||
pkcs11-helper
|
||||
pkg-config
|
||||
plasma-browser-integration
|
||||
plasma-desktop
|
||||
plasma-framework
|
||||
plasma-integration
|
||||
plasma-nm
|
||||
plasma-pa
|
||||
plasma-sdk
|
||||
plasma-vault
|
||||
plasma-workspace
|
||||
plasma-workspace-wallpapers
|
||||
pluggy
|
||||
ply
|
||||
pmdk
|
||||
@@ -2644,8 +2911,10 @@ posix_ipc
|
||||
postgresql
|
||||
powerline-fonts
|
||||
powertop
|
||||
poxml
|
||||
pretend
|
||||
prettytable
|
||||
prison
|
||||
proc-macro2
|
||||
processor-trace
|
||||
procps-ng
|
||||
@@ -2661,6 +2930,8 @@ pth
|
||||
ptyprocess
|
||||
pugixml
|
||||
pulseaudio
|
||||
purpose
|
||||
pv
|
||||
pwgen
|
||||
py
|
||||
pyOpenSSL
|
||||
@@ -2695,6 +2966,7 @@ pyparsing
|
||||
pyperclip
|
||||
pypowervm
|
||||
pyquery
|
||||
pyreadline
|
||||
pyrfc3339
|
||||
pyroute2
|
||||
pyrsistent
|
||||
@@ -2708,6 +2980,7 @@ pytest-forked
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
pytest-runner
|
||||
pytest-sugar
|
||||
pytest-timeout
|
||||
pytest-xdist
|
||||
python
|
||||
@@ -2737,6 +3010,7 @@ python-multilib
|
||||
python-neutronclient
|
||||
python-novaclient
|
||||
python-openstackclient
|
||||
python-openzwave
|
||||
python-perf
|
||||
python-pkgconfig
|
||||
python-pocketlint
|
||||
@@ -2759,10 +3033,14 @@ pyudev
|
||||
pywbem
|
||||
pyxdg
|
||||
pyzmq
|
||||
qca-qt5
|
||||
qemu
|
||||
qemu-lite
|
||||
qml-box2d
|
||||
qpdf
|
||||
qpid-python
|
||||
qqc2-desktop-style
|
||||
qrencode
|
||||
qt-creator
|
||||
qt3d
|
||||
qtbase
|
||||
@@ -2798,6 +3076,7 @@ qtwebsockets
|
||||
qtx11extras
|
||||
qtxmlpatterns
|
||||
quagga
|
||||
quassel
|
||||
quilt
|
||||
rabbitmq-c
|
||||
ragel
|
||||
@@ -2816,6 +3095,7 @@ repoze.lru
|
||||
repoze.who
|
||||
requests
|
||||
requests-mock
|
||||
requests-ntlm
|
||||
requests-toolbelt
|
||||
requestsexceptions
|
||||
rest
|
||||
@@ -2876,6 +3156,7 @@ setuptools-legacy
|
||||
setuptools_scm
|
||||
setuptools_scm_git_archive
|
||||
setxkbmap
|
||||
sg3_utils
|
||||
shadow
|
||||
shared-mime-info
|
||||
sharutils
|
||||
@@ -2909,6 +3190,7 @@ spark-dep
|
||||
speex
|
||||
speexdsp
|
||||
sphinx_rtd_theme
|
||||
sphinxcontrib-apidoc
|
||||
sphinxcontrib-httpdomain
|
||||
sphinxcontrib-newsfeed
|
||||
sphinxcontrib-websupport
|
||||
@@ -2939,6 +3221,8 @@ suds-jurko
|
||||
sundials
|
||||
sure
|
||||
suricata
|
||||
svgpart
|
||||
sweeper
|
||||
swift
|
||||
swig
|
||||
swupd-client
|
||||
@@ -2946,14 +3230,18 @@ swupd-overdue
|
||||
swupd-probe
|
||||
swupd-server
|
||||
sympy
|
||||
syndication
|
||||
synergy
|
||||
syntax-highlighting
|
||||
sysdig
|
||||
sysfsutils
|
||||
syslinux
|
||||
sysstat
|
||||
systemd
|
||||
systemd-bootchart
|
||||
systemd-netlogd
|
||||
systemsettings
|
||||
taglib
|
||||
talloc
|
||||
tallow
|
||||
tar
|
||||
@@ -2965,6 +3253,7 @@ tcpdump
|
||||
telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-logger
|
||||
telepathy-qt
|
||||
tempest-lib
|
||||
tempora
|
||||
tenacity
|
||||
@@ -3015,6 +3304,8 @@ typed-ast
|
||||
typing
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
ucpp
|
||||
udisks2
|
||||
uhttpmock
|
||||
unbundle
|
||||
@@ -3031,6 +3322,8 @@ urlgrabber
|
||||
urllib3
|
||||
usbredir
|
||||
usbutils
|
||||
user-agents
|
||||
user-manager
|
||||
usermode
|
||||
userspace-rcu
|
||||
usrbinpython
|
||||
@@ -3053,6 +3346,7 @@ virtualenv
|
||||
vlc
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
vsqlite
|
||||
vte
|
||||
vulkan-sdk
|
||||
@@ -3102,6 +3396,7 @@ xcursor-themes
|
||||
xcursorgen
|
||||
xdg-desktop-portal
|
||||
xdg-desktop-portal-gtk
|
||||
xdg-desktop-portal-kde
|
||||
xdg-user-dirs
|
||||
xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
@@ -3116,6 +3411,7 @@ xf86-video-amdgpu
|
||||
xf86-video-ati
|
||||
xf86-video-fbdev
|
||||
xf86-video-nouveau
|
||||
xf86-video-vboxvideo
|
||||
xf86-video-vesa
|
||||
xfburn
|
||||
xfce4-appfinder
|
||||
@@ -3140,6 +3436,7 @@ xlog
|
||||
xmlsec1
|
||||
xmlstarlet
|
||||
xmlto
|
||||
xmltodict
|
||||
xmodmap
|
||||
xorg-server
|
||||
xorgproto
|
||||
@@ -3152,11 +3449,13 @@ xrestop
|
||||
xscreensaver
|
||||
xset
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwd
|
||||
xwininfo
|
||||
xz
|
||||
yajl
|
||||
yaml
|
||||
yarl
|
||||
yasm
|
||||
yelp
|
||||
yelp-tools
|
||||
@@ -3165,7 +3464,10 @@ yum
|
||||
yum-metadata-parser
|
||||
yum-utils
|
||||
zake
|
||||
zc.lockfile
|
||||
zenity
|
||||
zeroconf
|
||||
zeroconf-ioslave
|
||||
zip
|
||||
zlib
|
||||
znc
|
||||
|
||||
Reference in New Issue
Block a user