mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 56a38edc64 | |||
| d5cdd5d1c5 | |||
| 806a1f5593 | |||
| b82d61d686 | |||
| d7404ca99d | |||
| c81774a23c | |||
| b1ef20b90b | |||
| b100150ca3 | |||
| 482940952d | |||
| b50fabd346 | |||
| c383979d14 | |||
| 08138ad889 | |||
| b78940d18a | |||
| bb74ceef8d | |||
| 12800a51fa | |||
| 9b445f1116 |
+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
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@ ConfigArgParse
|
||||
Cython
|
||||
Django
|
||||
Flask
|
||||
FlatBuffers
|
||||
FreeRDP
|
||||
GConf
|
||||
GitPython
|
||||
@@ -33,6 +34,7 @@ Paste
|
||||
PasteDeploy
|
||||
Pillow
|
||||
Pint
|
||||
PyDispatcher
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyWavelets
|
||||
@@ -135,6 +137,7 @@ R-RcppArmadillo
|
||||
R-RcppEigen
|
||||
R-RcppProgress
|
||||
R-RcppRoll
|
||||
R-Rdpack
|
||||
R-Rmpfr
|
||||
R-Rmpi
|
||||
R-Rserve
|
||||
@@ -347,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
|
||||
@@ -511,6 +517,7 @@ R-pbivnorm
|
||||
R-pbkrtest
|
||||
R-pbmcapply
|
||||
R-pcaPP
|
||||
R-pcse
|
||||
R-pdfCluster
|
||||
R-permute
|
||||
R-phangorn
|
||||
@@ -813,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
|
||||
@@ -837,6 +856,7 @@ argcomplete
|
||||
argon2
|
||||
argparse
|
||||
ark
|
||||
artikulate
|
||||
asciidoc
|
||||
asio
|
||||
asn1crypto
|
||||
@@ -845,9 +865,11 @@ aspell-en
|
||||
aspell-pt_BR
|
||||
assimp
|
||||
astor
|
||||
astral
|
||||
astroid
|
||||
astunparse
|
||||
asv
|
||||
async-timeout
|
||||
at
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
@@ -899,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
|
||||
@@ -925,6 +954,7 @@ buildreq-distutils3
|
||||
buildreq-gnome
|
||||
buildreq-golang
|
||||
buildreq-kde
|
||||
buildreq-kernel
|
||||
buildreq-make
|
||||
buildreq-meson
|
||||
buildreq-mvn
|
||||
@@ -942,7 +972,9 @@ cached-property
|
||||
cachetools
|
||||
cairo
|
||||
cairomm
|
||||
calendarsupport
|
||||
cantarell-fonts
|
||||
cantata
|
||||
capnproto
|
||||
cargo
|
||||
caribou
|
||||
@@ -982,12 +1014,14 @@ clear-font
|
||||
click
|
||||
cliff
|
||||
clinfo
|
||||
cln
|
||||
cloudpickle
|
||||
clr-R-helpers
|
||||
clr-avx-tools
|
||||
clr-boot-manager
|
||||
clr-debug-info
|
||||
clr-desktop-defaults
|
||||
clr-find-bundle
|
||||
clr-fwupd-hooks
|
||||
clr-hardware-files
|
||||
clr-init
|
||||
@@ -1099,6 +1133,7 @@ cursive
|
||||
cve-check-tool
|
||||
cxxfilt
|
||||
cycler
|
||||
cyrus-sasl
|
||||
dapl
|
||||
darktable
|
||||
dask
|
||||
@@ -1123,6 +1158,7 @@ dialog
|
||||
diffoscope
|
||||
diffstat
|
||||
diffutils
|
||||
digikam
|
||||
discover
|
||||
dist-pam-configs
|
||||
distro
|
||||
@@ -1149,6 +1185,7 @@ dogpile.cache
|
||||
dogpile.core
|
||||
dogtail
|
||||
dolphin
|
||||
dolphin-plugins
|
||||
dos2unix
|
||||
dosfstools
|
||||
double-conversion
|
||||
@@ -1156,6 +1193,8 @@ dovecot
|
||||
doxygen
|
||||
dpdk
|
||||
dracut
|
||||
dragon
|
||||
drkonqi
|
||||
dstat
|
||||
dtc
|
||||
dulwich
|
||||
@@ -1179,10 +1218,13 @@ empy
|
||||
enchant
|
||||
entrypoints
|
||||
enum34
|
||||
envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
ethtool
|
||||
eventlet
|
||||
eventviews
|
||||
evince
|
||||
evolution
|
||||
evolution-data-server
|
||||
@@ -1197,6 +1239,7 @@ extra-cmake-modules
|
||||
extras
|
||||
f2fs-tools
|
||||
faba-icon-theme
|
||||
fakeroot
|
||||
fann
|
||||
farstream
|
||||
fasteners
|
||||
@@ -1205,6 +1248,7 @@ feh
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
filelight
|
||||
filesystem
|
||||
findutils
|
||||
fio
|
||||
@@ -1233,6 +1277,7 @@ font-adobe-75dpi
|
||||
font-bitstream-type1
|
||||
font-util
|
||||
fontconfig
|
||||
frameworkintegration
|
||||
freeglut
|
||||
freeipmi
|
||||
freetype
|
||||
@@ -1245,6 +1290,7 @@ futures
|
||||
futurist
|
||||
fwupd
|
||||
fwupdate
|
||||
gTTS-token
|
||||
gabbi
|
||||
garcon
|
||||
gast
|
||||
@@ -1354,6 +1400,9 @@ gpredict
|
||||
gptfdisk
|
||||
gradle
|
||||
gradle-dep
|
||||
granatier
|
||||
grantlee
|
||||
grantleetheme
|
||||
graphene
|
||||
graphite
|
||||
graphviz
|
||||
@@ -1393,6 +1442,7 @@ h5py
|
||||
hacking
|
||||
hadoop-dep
|
||||
hamlib
|
||||
haproxy
|
||||
hardlink
|
||||
harfbuzz
|
||||
hdf5
|
||||
@@ -1403,6 +1453,7 @@ help2man
|
||||
hexchat
|
||||
hgtools
|
||||
hicolor-icon-theme
|
||||
home-assistant
|
||||
horizon
|
||||
hostname
|
||||
html5lib
|
||||
@@ -1430,6 +1481,7 @@ iceauth
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
idna-ssl
|
||||
iftop
|
||||
imagesize
|
||||
imapfilter
|
||||
@@ -1477,6 +1529,7 @@ ister
|
||||
itsdangerous
|
||||
itstool
|
||||
iw
|
||||
ixion
|
||||
ixpdimm_sw
|
||||
jansson
|
||||
jaraco.functools
|
||||
@@ -1506,33 +1559,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
|
||||
@@ -1546,51 +1644,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
|
||||
@@ -1630,7 +1808,9 @@ libXxf86dga
|
||||
libXxf86misc
|
||||
libXxf86vm
|
||||
libabigail
|
||||
libabw
|
||||
libaio
|
||||
libappindicator
|
||||
libarchive
|
||||
libarchive-c
|
||||
libassuan
|
||||
@@ -1644,25 +1824,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
|
||||
@@ -1677,6 +1865,7 @@ libgnome-keyring
|
||||
libgnomekbd
|
||||
libgpg-error
|
||||
libgphoto2
|
||||
libgravatar
|
||||
libgsystem
|
||||
libgtop
|
||||
libgudev
|
||||
@@ -1684,20 +1873,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
|
||||
@@ -1709,9 +1915,14 @@ libnftnl
|
||||
libnice
|
||||
libnl
|
||||
libnotify
|
||||
libnumbertext
|
||||
liboauth
|
||||
libodfgen
|
||||
libogg
|
||||
libopenzwave
|
||||
liborcus
|
||||
libosinfo
|
||||
libpagemaker
|
||||
libpcap
|
||||
libpciaccess
|
||||
libpeas
|
||||
@@ -1719,9 +1930,13 @@ libpipeline
|
||||
libpng
|
||||
libpthread-stubs
|
||||
libpwquality
|
||||
libqalculate
|
||||
libqmi
|
||||
libqxp
|
||||
librabbitmq
|
||||
libreoffice
|
||||
librepo
|
||||
librevenge
|
||||
librsvg
|
||||
librtlsdr
|
||||
libsamplerate
|
||||
@@ -1738,6 +1953,7 @@ libspectre
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
libstaroffice
|
||||
libstoragemgmt
|
||||
libtasn1
|
||||
libthai
|
||||
@@ -1756,12 +1972,16 @@ libva-utils
|
||||
libvirt
|
||||
libvirt-glib
|
||||
libvirt-python
|
||||
libvisio
|
||||
libvorbis
|
||||
libvpx
|
||||
libwacom
|
||||
libwebp
|
||||
libwnck
|
||||
libwnck3
|
||||
libwpd
|
||||
libwpg
|
||||
libwps
|
||||
libxcb
|
||||
libxfce4ui
|
||||
libxfce4util
|
||||
@@ -1775,6 +1995,7 @@ libxslt
|
||||
libyami
|
||||
libyami-utils
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
linecache2
|
||||
links
|
||||
@@ -1801,8 +2022,10 @@ lmdb
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
lokalize
|
||||
lsacpi
|
||||
lshw
|
||||
lskat
|
||||
lsof
|
||||
ltp
|
||||
ltrace
|
||||
@@ -1812,10 +2035,13 @@ lz4
|
||||
lzip
|
||||
lzo
|
||||
m4
|
||||
mailcommon
|
||||
mailimporter
|
||||
make
|
||||
makedepend
|
||||
man-db
|
||||
man-pages
|
||||
marble
|
||||
mariadb
|
||||
mash
|
||||
matplotlib
|
||||
@@ -1824,12 +2050,16 @@ mc
|
||||
mccabe
|
||||
mcelog
|
||||
mdadm
|
||||
mdds
|
||||
media-player-info
|
||||
meld
|
||||
memcached
|
||||
memkind
|
||||
memshrinker
|
||||
mesa
|
||||
mesa-demos
|
||||
meson
|
||||
messagelib
|
||||
metacity
|
||||
metrics-discovery
|
||||
micro-config-drive
|
||||
@@ -1837,6 +2067,7 @@ micro-config-drive-aws
|
||||
micro-config-drive-oci
|
||||
microversion_parse
|
||||
mido
|
||||
milou
|
||||
minetest
|
||||
minetest_game
|
||||
minicom
|
||||
@@ -1849,6 +2080,7 @@ mkosi
|
||||
mobile-broadband-provider-info
|
||||
mock
|
||||
mod_wsgi
|
||||
modemmanager-qt
|
||||
moka-icon-theme
|
||||
mongodict
|
||||
mono
|
||||
@@ -1874,11 +2106,14 @@ msmtp
|
||||
msr-tools
|
||||
mstflint
|
||||
mtdev
|
||||
mtr
|
||||
multidict
|
||||
multimon-ng
|
||||
multipath-tools
|
||||
munch
|
||||
murrine
|
||||
musl
|
||||
mutagen
|
||||
mutt
|
||||
mutter
|
||||
mypaint-brushes
|
||||
@@ -1902,6 +2137,7 @@ net-tools
|
||||
netaddr
|
||||
netbase
|
||||
netcat
|
||||
netdisco
|
||||
netifaces
|
||||
nettle
|
||||
network-manager-applet
|
||||
@@ -1951,6 +2187,7 @@ ocaml
|
||||
ocl-icd
|
||||
octave
|
||||
offlineimap
|
||||
okular
|
||||
olefile
|
||||
onig
|
||||
onnx
|
||||
@@ -2015,13 +2252,17 @@ oslosphinx
|
||||
oslotest
|
||||
osprofiler
|
||||
ostree
|
||||
otp
|
||||
ovirt-guest-agent
|
||||
ovs
|
||||
ovsdbapp
|
||||
oxygen
|
||||
oxygen-icons5
|
||||
p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacrunner
|
||||
palapeli
|
||||
pandas
|
||||
pandoc
|
||||
pandocfilters
|
||||
@@ -2030,6 +2271,7 @@ pangomm
|
||||
parallel
|
||||
parameter-framework
|
||||
paramiko
|
||||
parley
|
||||
parsedatetime
|
||||
parso
|
||||
parted
|
||||
@@ -2096,6 +2338,7 @@ perl-Carp-Assert
|
||||
perl-Carp-Assert-More
|
||||
perl-Class-Accessor
|
||||
perl-Class-Accessor-Chained
|
||||
perl-Class-Accessor-Grouped
|
||||
perl-Class-Accessor-Lite
|
||||
perl-Class-Base
|
||||
perl-Class-C3
|
||||
@@ -2105,6 +2348,7 @@ perl-Class-Data-Accessor
|
||||
perl-Class-Data-Inheritable
|
||||
perl-Class-ErrorHandler
|
||||
perl-Class-Inspector
|
||||
perl-Class-Method-Modifiers
|
||||
perl-Class-MethodMaker
|
||||
perl-Class-Mix
|
||||
perl-Class-ReturnValue
|
||||
@@ -2116,12 +2360,14 @@ perl-Class-Unload
|
||||
perl-Class-XSAccessor
|
||||
perl-Clipboard
|
||||
perl-Clone
|
||||
perl-Clone-Choose
|
||||
perl-Clone-PP
|
||||
perl-Compress-Bzip2
|
||||
perl-Compress-Raw-Lzma
|
||||
perl-Config-Any
|
||||
perl-Config-Grammar
|
||||
perl-Config-Std
|
||||
perl-Context-Preserve
|
||||
perl-Convert-ASN1
|
||||
perl-Convert-Binary-C
|
||||
perl-Cookie-Baker
|
||||
@@ -2143,11 +2389,13 @@ perl-DBIx-Simple
|
||||
perl-Data-Alias
|
||||
perl-Data-Compare
|
||||
perl-Data-Dump
|
||||
perl-Data-Dumper-Concise
|
||||
perl-Data-Dumper-Simple
|
||||
perl-Data-Float
|
||||
perl-Data-Integer
|
||||
perl-Data-Munge
|
||||
perl-Data-OptList
|
||||
perl-Data-Page
|
||||
perl-Data-Password
|
||||
perl-Data-Printer
|
||||
perl-Data-Random
|
||||
@@ -2280,6 +2528,7 @@ perl-HTTP-Negotiate
|
||||
perl-HTTP-Parser-XS
|
||||
perl-HTTP-Request-AsCGI
|
||||
perl-Hash-Flatten
|
||||
perl-Hash-Merge
|
||||
perl-Hash-MoreUtils
|
||||
perl-Hash-MultiValue
|
||||
perl-I18N-Charset
|
||||
@@ -2373,6 +2622,7 @@ perl-Module-Build
|
||||
perl-Module-Build-Tiny
|
||||
perl-Module-CPANfile
|
||||
perl-Module-Extract
|
||||
perl-Module-Find
|
||||
perl-Module-Implementation
|
||||
perl-Module-Install
|
||||
perl-Module-List
|
||||
@@ -2384,6 +2634,7 @@ perl-Module-Util
|
||||
perl-Module-Versions-Report
|
||||
perl-Mojolicious
|
||||
perl-Mojolicious-Plugin-AssetPack
|
||||
perl-Moo
|
||||
perl-Mozilla-CA
|
||||
perl-Net-CIDR-Lite
|
||||
perl-Net-DNS
|
||||
@@ -2457,6 +2708,7 @@ perl-Role-Tiny
|
||||
perl-Roman
|
||||
perl-Router-Simple
|
||||
perl-SMTP-Server
|
||||
perl-SQL-Abstract
|
||||
perl-SUPER
|
||||
perl-Scalar-String
|
||||
perl-Scope-Guard
|
||||
@@ -2632,20 +2884,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
|
||||
@@ -2660,8 +2923,10 @@ posix_ipc
|
||||
postgresql
|
||||
powerline-fonts
|
||||
powertop
|
||||
poxml
|
||||
pretend
|
||||
prettytable
|
||||
prison
|
||||
proc-macro2
|
||||
processor-trace
|
||||
procps-ng
|
||||
@@ -2677,6 +2942,8 @@ pth
|
||||
ptyprocess
|
||||
pugixml
|
||||
pulseaudio
|
||||
purpose
|
||||
pv
|
||||
pwgen
|
||||
py
|
||||
pyOpenSSL
|
||||
@@ -2711,6 +2978,7 @@ pyparsing
|
||||
pyperclip
|
||||
pypowervm
|
||||
pyquery
|
||||
pyreadline
|
||||
pyrfc3339
|
||||
pyroute2
|
||||
pyrsistent
|
||||
@@ -2754,6 +3022,7 @@ python-multilib
|
||||
python-neutronclient
|
||||
python-novaclient
|
||||
python-openstackclient
|
||||
python-openzwave
|
||||
python-perf
|
||||
python-pkgconfig
|
||||
python-pocketlint
|
||||
@@ -2776,10 +3045,14 @@ pyudev
|
||||
pywbem
|
||||
pyxdg
|
||||
pyzmq
|
||||
qca-qt5
|
||||
qemu
|
||||
qemu-lite
|
||||
qml-box2d
|
||||
qpdf
|
||||
qpid-python
|
||||
qqc2-desktop-style
|
||||
qrencode
|
||||
qt-creator
|
||||
qt3d
|
||||
qtbase
|
||||
@@ -2895,6 +3168,7 @@ setuptools-legacy
|
||||
setuptools_scm
|
||||
setuptools_scm_git_archive
|
||||
setxkbmap
|
||||
sg3_utils
|
||||
shadow
|
||||
shared-mime-info
|
||||
sharutils
|
||||
@@ -2959,6 +3233,8 @@ suds-jurko
|
||||
sundials
|
||||
sure
|
||||
suricata
|
||||
svgpart
|
||||
sweeper
|
||||
swift
|
||||
swig
|
||||
swupd-client
|
||||
@@ -2966,14 +3242,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
|
||||
@@ -2985,6 +3265,7 @@ tcpdump
|
||||
telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-logger
|
||||
telepathy-qt
|
||||
tempest-lib
|
||||
tempora
|
||||
tenacity
|
||||
@@ -3035,6 +3316,8 @@ typed-ast
|
||||
typing
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
ucpp
|
||||
udisks2
|
||||
uhttpmock
|
||||
unbundle
|
||||
@@ -3051,6 +3334,8 @@ urlgrabber
|
||||
urllib3
|
||||
usbredir
|
||||
usbutils
|
||||
user-agents
|
||||
user-manager
|
||||
usermode
|
||||
userspace-rcu
|
||||
usrbinpython
|
||||
@@ -3073,6 +3358,7 @@ virtualenv
|
||||
vlc
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
vsqlite
|
||||
vte
|
||||
vulkan-sdk
|
||||
@@ -3122,6 +3408,7 @@ xcursor-themes
|
||||
xcursorgen
|
||||
xdg-desktop-portal
|
||||
xdg-desktop-portal-gtk
|
||||
xdg-desktop-portal-kde
|
||||
xdg-user-dirs
|
||||
xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
@@ -3161,6 +3448,7 @@ xlog
|
||||
xmlsec1
|
||||
xmlstarlet
|
||||
xmlto
|
||||
xmltodict
|
||||
xmodmap
|
||||
xorg-server
|
||||
xorgproto
|
||||
@@ -3179,6 +3467,7 @@ xwininfo
|
||||
xz
|
||||
yajl
|
||||
yaml
|
||||
yarl
|
||||
yasm
|
||||
yelp
|
||||
yelp-tools
|
||||
@@ -3189,6 +3478,8 @@ yum-utils
|
||||
zake
|
||||
zc.lockfile
|
||||
zenity
|
||||
zeroconf
|
||||
zeroconf-ioslave
|
||||
zip
|
||||
zlib
|
||||
znc
|
||||
|
||||
Reference in New Issue
Block a user