mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 70d40d9b59 | |||
| 8b709c2e1b | |||
| ea4e713277 | |||
| ca817a8c5e | |||
| db80ffd052 | |||
| 54e7c47bd6 | |||
| 60cb8aa36a | |||
| 3a5c12aa29 | |||
| 118120ca01 | |||
| f59a650cf4 | |||
| 1dae5422cc | |||
| b4860a0d82 | |||
| 4760d853bb | |||
| 4331a0a193 | |||
| ca68988393 | |||
| 37879628f7 | |||
| 7f158c6e91 | |||
| 4b9b44feef | |||
| 20e55005ac | |||
| ceeee94f0c | |||
| 852b6e83c9 | |||
| ae9f0610d6 | |||
| fa65110479 | |||
| 4259e8dbf0 | |||
| 56a38edc64 | |||
| d5cdd5d1c5 | |||
| 806a1f5593 | |||
| b82d61d686 | |||
| d7404ca99d | |||
| c81774a23c |
@@ -17,5 +17,9 @@ update:
|
||||
curl -f -o packages ${BASE_URL}/source/package-sources
|
||||
cut -f1 packages | LC_ALL=C sort > packages.new && mv packages.new packages
|
||||
|
||||
.PHONY: spdx
|
||||
spdx:
|
||||
curl -s spdx.org/licenses/ | sed '0,/<tbody>/d;/<\/tbody>/q;s/<tr>/\f/g;s/$$/,/g;s/<[^>]*>//g' | awk 'BEGIN{RS="\f";FS=","} {print $$4}' | sed '/^$$/d;s/^[ ]*//' > spdx
|
||||
JSON=$$(mktemp); \
|
||||
trap "rm $$JSON" EXIT; \
|
||||
curl -f -S -s https://raw.githubusercontent.com/spdx/license-list-data/master/json/licenses.json > $$JSON || exit 1; \
|
||||
jq -r '.licenses[] | .licenseId' < $$JSON | LC_COLLATE=C sort > licenses-spdx
|
||||
|
||||
+2
-2
@@ -45,7 +45,7 @@ upstream:
|
||||
#help or that it is in the exceptions list.
|
||||
spdxcheck: $(SPECFILE)
|
||||
@for LICENSE in `rpmspec -D '_vendor clr' --srpm -q --queryformat '%{LICENSE}\n' $(SPECFILE)`; do \
|
||||
if ! grep -q "^$$LICENSE$$" $(TOPLVL)/projects/common/licenses-spdx && ! grep -q "$$LICENSE$$" $(TOPLVL)/projects/common/licenses-exceptions; then FAIL=yes; echo "ERROR: License '$$LICENSE' is not an allowed SPDX license ID"; fi; \
|
||||
if ! grep -qx "$$LICENSE" $(TOPLVL)/projects/common/licenses-{spdx,exceptions,extra}; then FAIL=yes; echo "ERROR: License '$$LICENSE' is not an allowed SPDX license ID"; fi; \
|
||||
done; test -z "$$FAIL"
|
||||
|
||||
#help cvecheck: Checks
|
||||
@@ -61,7 +61,7 @@ clean:
|
||||
|
||||
#help proper: Brings your copy of the package to a nearly clean git checkout state.
|
||||
proper: repodel
|
||||
rm -rf results
|
||||
rm -rf results rpms
|
||||
rm -f build.log.round*
|
||||
rm -f mock_build.log mock_srpm.log $(__allsources) report.html
|
||||
|
||||
|
||||
+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
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
# This file contains SPDX license identifiers that are not defined in the
|
||||
# latest version of SPDX but still needed (or possibly needed) for Clear Linux
|
||||
# packages.
|
||||
GFDL-1.3+
|
||||
MIT-Opengroup
|
||||
WXwindows
|
||||
w3c
|
||||
+150
-87
@@ -1,56 +1,63 @@
|
||||
0BSD
|
||||
AAL
|
||||
Abstyles
|
||||
Adobe-2006
|
||||
Adobe-Glyph
|
||||
ADSL
|
||||
AFL-1.1
|
||||
AFL-1.2
|
||||
AFL-2.0
|
||||
AFL-2.1
|
||||
AFL-3.0
|
||||
Afmparse
|
||||
AGPL-1.0
|
||||
AGPL-1.0-only
|
||||
AGPL-1.0-or-later
|
||||
AGPL-3.0
|
||||
Aladdin
|
||||
AGPL-3.0-only
|
||||
AGPL-3.0-or-later
|
||||
AMDPLPA
|
||||
AML
|
||||
AMPAS
|
||||
ANTLR-PD
|
||||
Apache-1.0
|
||||
Apache-1.1
|
||||
Apache-2.0
|
||||
APAFML
|
||||
APL-1.0
|
||||
APSL-1.0
|
||||
APSL-1.1
|
||||
APSL-1.2
|
||||
APSL-2.0
|
||||
Abstyles
|
||||
Adobe-2006
|
||||
Adobe-Glyph
|
||||
Afmparse
|
||||
Aladdin
|
||||
Apache-1.0
|
||||
Apache-1.1
|
||||
Apache-2.0
|
||||
Artistic-1.0
|
||||
Artistic-1.0-cl8
|
||||
Artistic-1.0-Perl
|
||||
Artistic-1.0-cl8
|
||||
Artistic-2.0
|
||||
BSD-1-Clause
|
||||
BSD-2-Clause
|
||||
BSD-2-Clause-FreeBSD
|
||||
BSD-2-Clause-NetBSD
|
||||
BSD-2-Clause-Patent
|
||||
BSD-3-Clause
|
||||
BSD-3-Clause-Attribution
|
||||
BSD-3-Clause-Clear
|
||||
BSD-3-Clause-LBNL
|
||||
BSD-3-Clause-No-Nuclear-License
|
||||
BSD-3-Clause-No-Nuclear-License-2014
|
||||
BSD-3-Clause-No-Nuclear-Warranty
|
||||
BSD-4-Clause
|
||||
BSD-4-Clause-UC
|
||||
BSD-Protection
|
||||
BSD-Source-Code
|
||||
BSL-1.0
|
||||
Bahyph
|
||||
Barr
|
||||
Beerware
|
||||
BitTorrent-1.0
|
||||
BitTorrent-1.1
|
||||
Borceux
|
||||
BSD-2-Clause
|
||||
BSD-2-Clause-FreeBSD
|
||||
BSD-2-Clause-NetBSD
|
||||
BSD-3-Clause
|
||||
BSD-3-Clause-Attribution
|
||||
BSD-3-Clause-Clear
|
||||
BSD-3-Clause-LBNL
|
||||
BSD-4-Clause
|
||||
BSD-4-Clause-UC
|
||||
BSD-Protection
|
||||
BSL-1.0
|
||||
bzip2-1.0.5
|
||||
bzip2-1.0.6
|
||||
Caldera
|
||||
CATOSL-1.1
|
||||
CC0-1.0
|
||||
CC-BY-1.0
|
||||
CC-BY-2.0
|
||||
CC-BY-2.5
|
||||
@@ -81,96 +88,117 @@ CC-BY-SA-2.0
|
||||
CC-BY-SA-2.5
|
||||
CC-BY-SA-3.0
|
||||
CC-BY-SA-4.0
|
||||
CC0-1.0
|
||||
CDDL-1.0
|
||||
CDDL-1.1
|
||||
CDLA-Permissive-1.0
|
||||
CDLA-Sharing-1.0
|
||||
CECILL-1.0
|
||||
CECILL-1.1
|
||||
CECILL-2.0
|
||||
CECILL-2.1
|
||||
CECILL-B
|
||||
CECILL-C
|
||||
ClArtistic
|
||||
CNRI-Jython
|
||||
CNRI-Python
|
||||
CNRI-Python-GPL-Compatible
|
||||
Condor-1.1
|
||||
CPAL-1.0
|
||||
CPL-1.0
|
||||
CPOL-1.02
|
||||
Crossword
|
||||
CUA-OPL-1.0
|
||||
Caldera
|
||||
ClArtistic
|
||||
Condor-1.1
|
||||
Crossword
|
||||
CrystalStacker
|
||||
Cube
|
||||
D-FSL-1.0
|
||||
diffmark
|
||||
DOC
|
||||
Dotseqn
|
||||
DSDP
|
||||
dvipdfm
|
||||
Dotseqn
|
||||
ECL-1.0
|
||||
ECL-2.0
|
||||
eCos-2.0
|
||||
EFL-1.0
|
||||
EFL-2.0
|
||||
eGenix
|
||||
Entessa
|
||||
EPL-1.0
|
||||
ErlPL-1.1
|
||||
EPL-2.0
|
||||
EUDatagrid
|
||||
EUPL-1.0
|
||||
EUPL-1.1
|
||||
EUPL-1.2
|
||||
Entessa
|
||||
ErlPL-1.1
|
||||
Eurosym
|
||||
Fair
|
||||
Frameworx-1.0
|
||||
FreeImage
|
||||
FSFAP
|
||||
FSFUL
|
||||
FSFULLR
|
||||
FTL
|
||||
Fair
|
||||
Frameworx-1.0
|
||||
FreeImage
|
||||
GFDL-1.1
|
||||
GFDL-1.1-only
|
||||
GFDL-1.1-or-later
|
||||
GFDL-1.2
|
||||
GFDL-1.2-only
|
||||
GFDL-1.2-or-later
|
||||
GFDL-1.3
|
||||
GFDL-1.3+
|
||||
Giftware
|
||||
GFDL-1.3-only
|
||||
GFDL-1.3-or-later
|
||||
GL2PS
|
||||
Glide
|
||||
Glulxe
|
||||
gnuplot
|
||||
GPL-1.0
|
||||
GPL-1.0+
|
||||
GPL-1.0-only
|
||||
GPL-1.0-or-later
|
||||
GPL-2.0
|
||||
GPL-2.0+
|
||||
GPL-2.0-only
|
||||
GPL-2.0-or-later
|
||||
GPL-2.0-with-GCC-exception
|
||||
GPL-2.0-with-autoconf-exception
|
||||
GPL-2.0-with-bison-exception
|
||||
GPL-2.0-with-classpath-exception
|
||||
GPL-2.0-with-font-exception
|
||||
GPL-2.0-with-GCC-exception
|
||||
GPL-3.0
|
||||
GPL-3.0+
|
||||
GPL-3.0-with-autoconf-exception
|
||||
GPL-3.0-only
|
||||
GPL-3.0-or-later
|
||||
GPL-3.0-with-GCC-exception
|
||||
gSOAP-1.3b
|
||||
HaskellReport
|
||||
GPL-3.0-with-autoconf-exception
|
||||
Giftware
|
||||
Glide
|
||||
Glulxe
|
||||
HPND
|
||||
HaskellReport
|
||||
IBM-pibs
|
||||
ICU
|
||||
IJG
|
||||
ImageMagick
|
||||
iMatix
|
||||
Imlib2
|
||||
Intel
|
||||
Intel-ACPI
|
||||
IPA
|
||||
IPL-1.0
|
||||
ISC
|
||||
JasPer-2.0
|
||||
ImageMagick
|
||||
Imlib2
|
||||
Info-ZIP
|
||||
Intel
|
||||
Intel-ACPI
|
||||
Interbase-1.0
|
||||
JSON
|
||||
Latex2e
|
||||
Leptonica
|
||||
JasPer-2.0
|
||||
LAL-1.2
|
||||
LAL-1.3
|
||||
LGPL-2.0
|
||||
LGPL-2.0+
|
||||
LGPL-2.0-only
|
||||
LGPL-2.0-or-later
|
||||
LGPL-2.1
|
||||
LGPL-2.1+
|
||||
LGPL-2.1-only
|
||||
LGPL-2.1-or-later
|
||||
LGPL-3.0
|
||||
LGPL-3.0+
|
||||
Libpng
|
||||
libtiff
|
||||
LGPL-3.0-only
|
||||
LGPL-3.0-or-later
|
||||
LGPLLR
|
||||
LPL-1.0
|
||||
LPL-1.02
|
||||
LPPL-1.0
|
||||
@@ -178,17 +206,20 @@ LPPL-1.1
|
||||
LPPL-1.2
|
||||
LPPL-1.3a
|
||||
LPPL-1.3c
|
||||
MakeIndex
|
||||
MirOS
|
||||
Latex2e
|
||||
Leptonica
|
||||
LiLiQ-P-1.1
|
||||
LiLiQ-R-1.1
|
||||
LiLiQ-Rplus-1.1
|
||||
Libpng
|
||||
Linux-OpenIB
|
||||
MIT
|
||||
MIT-advertising
|
||||
MIT-0
|
||||
MIT-CMU
|
||||
MIT-advertising
|
||||
MIT-enna
|
||||
MIT-feh
|
||||
MIT-Opengroup
|
||||
MITNFA
|
||||
Motosoto
|
||||
mpich2
|
||||
MPL-1.0
|
||||
MPL-1.1
|
||||
MPL-2.0
|
||||
@@ -196,26 +227,33 @@ MPL-2.0-no-copyleft-exception
|
||||
MS-PL
|
||||
MS-RL
|
||||
MTLL
|
||||
MakeIndex
|
||||
MirOS
|
||||
Motosoto
|
||||
Multics
|
||||
Mup
|
||||
NASA-1.3
|
||||
Naumen
|
||||
NBPL-1.0
|
||||
NCSA
|
||||
NetCDF
|
||||
Newsletr
|
||||
NGPL
|
||||
NLOD-1.0
|
||||
NLPL
|
||||
Nokia
|
||||
NOSL
|
||||
Noweb
|
||||
NPL-1.0
|
||||
NPL-1.1
|
||||
NPOSL-3.0
|
||||
NRL
|
||||
NTP
|
||||
Naumen
|
||||
Net-SNMP
|
||||
NetCDF
|
||||
Newsletr
|
||||
Nokia
|
||||
Noweb
|
||||
Nunit
|
||||
OCCT-PL
|
||||
OCLC-2.0
|
||||
ODC-By-1.0
|
||||
ODbL-1.0
|
||||
OFL-1.0
|
||||
OFL-1.1
|
||||
@@ -237,77 +275,102 @@ OLDAP-2.6
|
||||
OLDAP-2.7
|
||||
OLDAP-2.8
|
||||
OML
|
||||
OpenSSL
|
||||
OPL-1.0
|
||||
OSET-PL-2.1
|
||||
OSL-1.0
|
||||
OSL-1.1
|
||||
OSL-2.0
|
||||
OSL-2.1
|
||||
OSL-3.0
|
||||
OpenSSL
|
||||
PDDL-1.0
|
||||
PHP-3.0
|
||||
PHP-3.01
|
||||
Plexus
|
||||
PostgreSQL
|
||||
psfrag
|
||||
psutils
|
||||
Python-2.0
|
||||
Qhull
|
||||
QPL-1.0
|
||||
Rdisc
|
||||
Qhull
|
||||
RHeCos-1.1
|
||||
RPL-1.1
|
||||
RPL-1.5
|
||||
RPSL-1.0
|
||||
RSA-MD
|
||||
RSCPL
|
||||
Rdisc
|
||||
Ruby
|
||||
Saxpath
|
||||
SAX-PD
|
||||
SCEA
|
||||
SGI-B-1.0
|
||||
SGI-B-1.1
|
||||
SGI-B-2.0
|
||||
SimPL-2.0
|
||||
SISSL
|
||||
SISSL-1.2
|
||||
Sleepycat
|
||||
SMLNJ
|
||||
SMPPL
|
||||
SNIA
|
||||
SPL-1.0
|
||||
SWL
|
||||
Saxpath
|
||||
Sendmail
|
||||
SimPL-2.0
|
||||
Sleepycat
|
||||
Spencer-86
|
||||
Spencer-94
|
||||
Spencer-99
|
||||
StandardML-NJ
|
||||
SugarCRM-1.1.3
|
||||
SWL
|
||||
TCL
|
||||
TCP-wrappers
|
||||
TMate
|
||||
TORQUE-1.1
|
||||
TOSL
|
||||
TU-Berlin-1.0
|
||||
TU-Berlin-2.0
|
||||
UPL-1.0
|
||||
Unicode-DFS-2015
|
||||
Unicode-DFS-2016
|
||||
Unicode-TOU
|
||||
Unlicense
|
||||
Vim
|
||||
VOSTROM
|
||||
VSL-1.0
|
||||
Vim
|
||||
W3C
|
||||
W3C-19980720
|
||||
W3C-20150513
|
||||
WTFPL
|
||||
Watcom-1.0
|
||||
Wsuipa
|
||||
WTFPL
|
||||
WXwindows
|
||||
X11
|
||||
Xerox
|
||||
XFree86-1.1
|
||||
xinetd
|
||||
Xnet
|
||||
xpp
|
||||
XSkat
|
||||
Xerox
|
||||
Xnet
|
||||
YPL-1.0
|
||||
YPL-1.1
|
||||
ZPL-1.1
|
||||
ZPL-2.0
|
||||
ZPL-2.1
|
||||
Zed
|
||||
Zend-2.0
|
||||
Zimbra-1.3
|
||||
Zimbra-1.4
|
||||
Zlib
|
||||
bzip2-1.0.5
|
||||
bzip2-1.0.6
|
||||
curl
|
||||
diffmark
|
||||
dvipdfm
|
||||
eCos-2.0
|
||||
eGenix
|
||||
gSOAP-1.3b
|
||||
gnuplot
|
||||
iMatix
|
||||
libtiff
|
||||
mpich2
|
||||
psfrag
|
||||
psutils
|
||||
wxWindows
|
||||
xinetd
|
||||
xpp
|
||||
zlib-acknowledgement
|
||||
ZPL-1.1
|
||||
ZPL-2.0
|
||||
ZPL-2.1
|
||||
w3c
|
||||
|
||||
@@ -2,10 +2,13 @@ Babel
|
||||
Botan
|
||||
CUnit
|
||||
Cheetah
|
||||
CherryPy
|
||||
ConfigArgParse
|
||||
Counter
|
||||
Cython
|
||||
Django
|
||||
Flask
|
||||
Flask-RESTful
|
||||
FlatBuffers
|
||||
FreeRDP
|
||||
GConf
|
||||
@@ -444,6 +447,7 @@ R-lsmeans
|
||||
R-lubridate
|
||||
R-mFilter
|
||||
R-magic
|
||||
R-magick
|
||||
R-magrittr
|
||||
R-manipulate
|
||||
R-manipulateWidget
|
||||
@@ -519,6 +523,7 @@ R-pbmcapply
|
||||
R-pcaPP
|
||||
R-pcse
|
||||
R-pdfCluster
|
||||
R-pdftools
|
||||
R-permute
|
||||
R-phangorn
|
||||
R-pheatmap
|
||||
@@ -582,6 +587,7 @@ R-randomForest
|
||||
R-randomNames
|
||||
R-randtoolbox
|
||||
R-ranger
|
||||
R-rappdirs
|
||||
R-raster
|
||||
R-rasterVis
|
||||
R-reactR
|
||||
@@ -628,6 +634,7 @@ R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstudioapi
|
||||
R-rsvg
|
||||
R-rversions
|
||||
R-rvest
|
||||
R-sROC
|
||||
@@ -771,6 +778,7 @@ SuiteSparse
|
||||
Tempita
|
||||
Theano
|
||||
Thunar
|
||||
UkPostcodeParser
|
||||
Vertex-theme
|
||||
WALinuxAgent
|
||||
WSGIProxy2
|
||||
@@ -837,7 +845,9 @@ alsa-lib
|
||||
alsa-plugins
|
||||
alsa-utils
|
||||
amqp
|
||||
amtk
|
||||
analitza
|
||||
aniso8601
|
||||
ansible
|
||||
anyjson
|
||||
apache-ant
|
||||
@@ -924,6 +934,7 @@ bleach
|
||||
blinken
|
||||
blinker
|
||||
blktrace
|
||||
blockdiag
|
||||
bluedevil
|
||||
bluez
|
||||
bluez-qt
|
||||
@@ -975,6 +986,7 @@ cairomm
|
||||
calendarsupport
|
||||
cantarell-fonts
|
||||
cantata
|
||||
cantor
|
||||
capnproto
|
||||
cargo
|
||||
caribou
|
||||
@@ -997,7 +1009,6 @@ chardet
|
||||
check
|
||||
cheese
|
||||
cheroot
|
||||
cherrypy
|
||||
chrome-gnome-shell
|
||||
chrony
|
||||
chrpath
|
||||
@@ -1014,6 +1025,7 @@ clear-font
|
||||
click
|
||||
cliff
|
||||
clinfo
|
||||
cln
|
||||
cloudpickle
|
||||
clr-R-helpers
|
||||
clr-avx-tools
|
||||
@@ -1071,6 +1083,7 @@ colorama
|
||||
colord
|
||||
colord-gtk
|
||||
comedilib
|
||||
commonmark
|
||||
compat-SDL2-soname1
|
||||
compat-cryptsetup-soname4
|
||||
compat-efivar-soname0
|
||||
@@ -1080,6 +1093,7 @@ compat-gegl-0.3
|
||||
compat-glew-soname1
|
||||
compat-gtksourceview-soname3
|
||||
compat-guile-soname20
|
||||
compat-hdf5-soname10
|
||||
compat-hyperscan-soname4
|
||||
compat-ipset-soname10
|
||||
compat-libical-soname2
|
||||
@@ -1138,6 +1152,7 @@ darktable
|
||||
dask
|
||||
db
|
||||
dbus
|
||||
dbus-broker
|
||||
dbus-glib
|
||||
dconf
|
||||
dconf-editor
|
||||
@@ -1150,6 +1165,7 @@ defusedxml
|
||||
dejagnu
|
||||
deprecation
|
||||
desktop-file-utils
|
||||
devhelp
|
||||
dfc
|
||||
dfu-util
|
||||
dhcp
|
||||
@@ -1158,6 +1174,8 @@ diffoscope
|
||||
diffstat
|
||||
diffutils
|
||||
digikam
|
||||
ding-libs
|
||||
direwolf
|
||||
discover
|
||||
dist-pam-configs
|
||||
distro
|
||||
@@ -1196,7 +1214,9 @@ dragon
|
||||
drkonqi
|
||||
dstat
|
||||
dtc
|
||||
dtopt
|
||||
dulwich
|
||||
duperemove
|
||||
dwarves
|
||||
dyskctl
|
||||
e2fsprogs
|
||||
@@ -1223,6 +1243,7 @@ eog-plugins
|
||||
epm
|
||||
ethtool
|
||||
eventlet
|
||||
eventviews
|
||||
evince
|
||||
evolution
|
||||
evolution-data-server
|
||||
@@ -1279,8 +1300,11 @@ frameworkintegration
|
||||
freeglut
|
||||
freeipmi
|
||||
freetype
|
||||
freezegun
|
||||
fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
funcparserlib
|
||||
funcsigs
|
||||
functools32
|
||||
fuse
|
||||
@@ -1296,6 +1320,7 @@ gawk
|
||||
gc
|
||||
gcab
|
||||
gcc
|
||||
gcompris-qt
|
||||
gcr
|
||||
gcs-oauth2-boto-plugin
|
||||
gdal
|
||||
@@ -1340,6 +1365,7 @@ glusterfs
|
||||
gmic
|
||||
gmime
|
||||
gmp
|
||||
gmqtt
|
||||
gnome-applets
|
||||
gnome-autoar
|
||||
gnome-backgrounds
|
||||
@@ -1351,6 +1377,7 @@ gnome-color-manager
|
||||
gnome-common
|
||||
gnome-control-center
|
||||
gnome-desktop
|
||||
gnome-disk-utility
|
||||
gnome-flashback
|
||||
gnome-font-viewer
|
||||
gnome-icon-theme
|
||||
@@ -1373,7 +1400,7 @@ gnome-system-monitor
|
||||
gnome-terminal
|
||||
gnome-themes-standard
|
||||
gnome-todo
|
||||
gnome-tweak-tool
|
||||
gnome-tweaks
|
||||
gnome-user-docs
|
||||
gnome-video-effects
|
||||
gnome-weather
|
||||
@@ -1389,6 +1416,7 @@ gom
|
||||
goocanvas
|
||||
google-api-python-client
|
||||
google-apitools
|
||||
google-reauth
|
||||
googletest
|
||||
gperf
|
||||
gperftools
|
||||
@@ -1432,6 +1460,7 @@ gtkmm3
|
||||
gtksourceview
|
||||
gtkspell3
|
||||
guile
|
||||
gupnp-av
|
||||
gutenprint
|
||||
gvfs
|
||||
gvim
|
||||
@@ -1471,8 +1500,11 @@ i2c-tools
|
||||
i3
|
||||
i3lock
|
||||
i3status
|
||||
ias
|
||||
iasimage
|
||||
ibus
|
||||
ibus-libpinyin
|
||||
ibus-table
|
||||
icalendar
|
||||
icdiff
|
||||
iceauth
|
||||
@@ -1493,13 +1525,13 @@ inotify-tools
|
||||
intel-gpu-tools
|
||||
intel-hybrid-driver
|
||||
intltool
|
||||
invm-frameworks
|
||||
ioc-cbc-tools
|
||||
ioping
|
||||
iotop
|
||||
ipaddr
|
||||
ipaddress
|
||||
iperf
|
||||
ipmctl
|
||||
ipmitool
|
||||
iproute2
|
||||
ipset
|
||||
@@ -1528,7 +1560,6 @@ itsdangerous
|
||||
itstool
|
||||
iw
|
||||
ixion
|
||||
ixpdimm_sw
|
||||
jansson
|
||||
jaraco.functools
|
||||
jedi
|
||||
@@ -1690,6 +1721,7 @@ klines
|
||||
kmag
|
||||
kmahjongg
|
||||
kmail
|
||||
kmail-account-wizard
|
||||
kmailtransport
|
||||
kmbox
|
||||
kmediaplayer
|
||||
@@ -1747,6 +1779,8 @@ ktexteditor
|
||||
ktextwidgets
|
||||
ktimer
|
||||
ktnef
|
||||
ktp-approver
|
||||
ktp-common-internals
|
||||
ktp-desktop-applets
|
||||
ktuberling
|
||||
kturtle
|
||||
@@ -1769,6 +1803,7 @@ lazy-object-proxy
|
||||
lcms2
|
||||
lcov
|
||||
ldap3
|
||||
ldb
|
||||
lensfun
|
||||
less
|
||||
leveldb
|
||||
@@ -1809,6 +1844,7 @@ libappindicator
|
||||
libarchive
|
||||
libarchive-c
|
||||
libassuan
|
||||
libasyncns
|
||||
libatasmart
|
||||
libatomic_ops
|
||||
libb64
|
||||
@@ -1827,6 +1863,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libdaemon
|
||||
libdatrie
|
||||
libdazzle
|
||||
libdbusmenu
|
||||
@@ -1845,6 +1882,7 @@ libexif
|
||||
libexttextcat
|
||||
libffi
|
||||
libfontenc
|
||||
libfprint
|
||||
libfreehand
|
||||
libgcrypt
|
||||
libgd
|
||||
@@ -1910,6 +1948,7 @@ libnftnl
|
||||
libnice
|
||||
libnl
|
||||
libnotify
|
||||
libnova
|
||||
libnumbertext
|
||||
liboauth
|
||||
libodfgen
|
||||
@@ -1921,10 +1960,14 @@ libpagemaker
|
||||
libpcap
|
||||
libpciaccess
|
||||
libpeas
|
||||
libpfm
|
||||
libpinyin
|
||||
libpipeline
|
||||
libpng
|
||||
libpsl
|
||||
libpthread-stubs
|
||||
libpwquality
|
||||
libqalculate
|
||||
libqmi
|
||||
libqxp
|
||||
librabbitmq
|
||||
@@ -1933,6 +1976,7 @@ librepo
|
||||
librevenge
|
||||
librsvg
|
||||
librtlsdr
|
||||
libsafec
|
||||
libsamplerate
|
||||
libsass
|
||||
libseccomp
|
||||
@@ -1967,6 +2011,7 @@ libvirt
|
||||
libvirt-glib
|
||||
libvirt-python
|
||||
libvisio
|
||||
libvma
|
||||
libvorbis
|
||||
libvpx
|
||||
libwacom
|
||||
@@ -2007,9 +2052,12 @@ linux-libc-headers
|
||||
linux-lts
|
||||
linux-oracle
|
||||
linux-pk414
|
||||
linux-pk414-preempt-rt
|
||||
linux-preempt-rt
|
||||
linux-steam-integration
|
||||
linux-tools
|
||||
linuxptp
|
||||
lksctp-tools
|
||||
llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
@@ -2090,6 +2138,7 @@ mox3
|
||||
mozjs
|
||||
mozjs38
|
||||
mozjs52
|
||||
mozjs60
|
||||
mpc
|
||||
mpfr
|
||||
mpg123
|
||||
@@ -2130,7 +2179,6 @@ net-snmp
|
||||
net-tools
|
||||
netaddr
|
||||
netbase
|
||||
netcat
|
||||
netdisco
|
||||
netifaces
|
||||
nettle
|
||||
@@ -2168,6 +2216,7 @@ nss
|
||||
nss-altfiles
|
||||
ntfs-3g
|
||||
ntlm-auth
|
||||
ntplib
|
||||
numactl
|
||||
numatop
|
||||
numba
|
||||
@@ -2246,6 +2295,7 @@ oslosphinx
|
||||
oslotest
|
||||
osprofiler
|
||||
ostree
|
||||
otp
|
||||
ovirt-guest-agent
|
||||
ovs
|
||||
ovsdbapp
|
||||
@@ -2296,6 +2346,7 @@ perl-AnyEvent
|
||||
perl-AnyEvent-CacheDNS
|
||||
perl-Apache-Htpasswd
|
||||
perl-Apache-Session
|
||||
perl-App-cpanminus
|
||||
perl-Archive-Cpio
|
||||
perl-Archive-Extract
|
||||
perl-Archive-Tar-Wrapper
|
||||
@@ -2308,13 +2359,17 @@ perl-Audio-Musepack
|
||||
perl-Audio-Scan
|
||||
perl-Audio-Wav
|
||||
perl-B-Hooks-EndOfScope
|
||||
perl-B-Hooks-OP-Check
|
||||
perl-B-Keywords
|
||||
perl-BSD-Resource
|
||||
perl-Biblio-EndnoteStyle
|
||||
perl-Browser-Open
|
||||
perl-Business-ISBN
|
||||
perl-Business-ISBN-Data
|
||||
perl-Business-ISMN
|
||||
perl-Business-ISSN
|
||||
perl-CDDB-File
|
||||
perl-CGI
|
||||
perl-CGI-Compile
|
||||
perl-CGI-Simple
|
||||
perl-CPAN-Changes
|
||||
@@ -2323,14 +2378,17 @@ perl-CPAN-Meta-Check
|
||||
perl-CPAN-Perl-Releases
|
||||
perl-CSS-DOM
|
||||
perl-CSS-Minifier-XS
|
||||
perl-CSS-Tiny
|
||||
perl-Cache-Simple-TimedExpiry
|
||||
perl-Calendar-Simple
|
||||
perl-Canary-Stability
|
||||
perl-Capture-Tiny
|
||||
perl-Carp-Assert
|
||||
perl-Carp-Assert-More
|
||||
perl-Carp-Clan
|
||||
perl-Class-Accessor
|
||||
perl-Class-Accessor-Chained
|
||||
perl-Class-Accessor-Grouped
|
||||
perl-Class-Accessor-Lite
|
||||
perl-Class-Base
|
||||
perl-Class-C3
|
||||
@@ -2339,7 +2397,11 @@ perl-Class-Container
|
||||
perl-Class-Data-Accessor
|
||||
perl-Class-Data-Inheritable
|
||||
perl-Class-ErrorHandler
|
||||
perl-Class-Factory-Util
|
||||
perl-Class-Inspector
|
||||
perl-Class-Load
|
||||
perl-Class-Load-XS
|
||||
perl-Class-Method-Modifiers
|
||||
perl-Class-MethodMaker
|
||||
perl-Class-Mix
|
||||
perl-Class-ReturnValue
|
||||
@@ -2351,16 +2413,21 @@ 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-IniFiles
|
||||
perl-Config-Std
|
||||
perl-Config-Tiny
|
||||
perl-Context-Preserve
|
||||
perl-Convert-ASN1
|
||||
perl-Convert-Binary-C
|
||||
perl-Cookie-Baker
|
||||
perl-Cpanel-JSON-XS
|
||||
perl-Crypt-DH-GMP
|
||||
perl-Crypt-Eksblowfish
|
||||
perl-Crypt-GeneratePassword
|
||||
perl-Crypt-Random-Seed
|
||||
@@ -2368,9 +2435,16 @@ perl-Crypt-Rijndael
|
||||
perl-Crypt-SSLeay
|
||||
perl-Crypt-URandom
|
||||
perl-Curses
|
||||
perl-DBD-Pg
|
||||
perl-DBD-SQLite
|
||||
perl-DBD-SQLite2
|
||||
perl-DBI
|
||||
perl-DBICx-TestDatabase
|
||||
perl-DBIx-Class
|
||||
perl-DBIx-Class-DeploymentHandler
|
||||
perl-DBIx-Class-DynamicDefault
|
||||
perl-DBIx-Class-OptimisticLocking
|
||||
perl-DBIx-Class-Schema-Config
|
||||
perl-DBIx-Connector
|
||||
perl-DBIx-ContextualFetch
|
||||
perl-DBIx-DBSchema
|
||||
@@ -2378,11 +2452,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
|
||||
@@ -2391,8 +2467,12 @@ perl-Data-Structure-Util
|
||||
perl-Data-Uniqid
|
||||
perl-Data-Validate-IP
|
||||
perl-DateTime
|
||||
perl-DateTime-Format-Builder
|
||||
perl-DateTime-Format-DateParse
|
||||
perl-DateTime-Format-Mail
|
||||
perl-DateTime-Format-MySQL
|
||||
perl-DateTime-Format-Pg
|
||||
perl-DateTime-Format-Strptime
|
||||
perl-DateTime-Format-W3CDTF
|
||||
perl-DateTime-Locale
|
||||
perl-DateTime-TimeZone
|
||||
@@ -2404,6 +2484,7 @@ perl-Devel-CheckOS
|
||||
perl-Devel-Confess
|
||||
perl-Devel-Cover
|
||||
perl-Devel-Cycle
|
||||
perl-Devel-EnforceEncapsulation
|
||||
perl-Devel-GlobalDestruction
|
||||
perl-Devel-Hide
|
||||
perl-Devel-OverloadInfo
|
||||
@@ -2438,6 +2519,7 @@ perl-Eval-Closure
|
||||
perl-Event
|
||||
perl-Event-RPC
|
||||
perl-Exception-Class
|
||||
perl-Exporter-Declare
|
||||
perl-Exporter-Easy
|
||||
perl-Exporter-Lite
|
||||
perl-Exporter-Tiny
|
||||
@@ -2447,6 +2529,7 @@ perl-ExtUtils-Helpers
|
||||
perl-ExtUtils-InstallPaths
|
||||
perl-FCGI-ProcManager
|
||||
perl-Feed-Find
|
||||
perl-Fennec-Lite
|
||||
perl-File-BaseDir
|
||||
perl-File-Copy-Link
|
||||
perl-File-Copy-Recursive
|
||||
@@ -2480,6 +2563,7 @@ perl-File-pushd
|
||||
perl-Filesys-Df
|
||||
perl-Filesys-Notify-Simple
|
||||
perl-Font-AFM
|
||||
perl-Font-TTF
|
||||
perl-FreezeThaw
|
||||
perl-Frontier-RPC
|
||||
perl-Future
|
||||
@@ -2515,6 +2599,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
|
||||
@@ -2536,6 +2621,7 @@ perl-IO-Socket-Timeout
|
||||
perl-IO-String
|
||||
perl-IO-Tee
|
||||
perl-IO-TieCombine
|
||||
perl-IO-Tty
|
||||
perl-IO-stringy
|
||||
perl-IPC-Run
|
||||
perl-IPC-Run3
|
||||
@@ -2573,6 +2659,7 @@ perl-Locale-Maketext-Lexicon
|
||||
perl-Locale-Msgfmt
|
||||
perl-Log-Agent
|
||||
perl-Log-Any
|
||||
perl-Log-Contextual
|
||||
perl-Log-Dispatch
|
||||
perl-Log-Dispatch-Array
|
||||
perl-Log-Log4perl
|
||||
@@ -2602,25 +2689,38 @@ perl-Math-Spline
|
||||
perl-Math-Utils
|
||||
perl-Math-Vec
|
||||
perl-Memoize-ExpireLRU
|
||||
perl-Meta-Builder
|
||||
perl-Minion
|
||||
perl-Mock-Config
|
||||
perl-Modern-Perl
|
||||
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
|
||||
perl-Module-Pluggable
|
||||
perl-Module-Runtime
|
||||
perl-Module-Runtime-Conflicts
|
||||
perl-Module-ScanDeps
|
||||
perl-Module-Starter
|
||||
perl-Module-Util
|
||||
perl-Module-Versions-Report
|
||||
perl-Mojo-IOLoop-ReadWriteProcess
|
||||
perl-Mojo-Pg
|
||||
perl-Mojo-RabbitMQ-Client
|
||||
perl-Mojolicious
|
||||
perl-Mojolicious-Plugin-AssetPack
|
||||
perl-Mojolicious-Plugin-RenderFile
|
||||
perl-Moo
|
||||
perl-Moose
|
||||
perl-MooseX-Role-Parameterized
|
||||
perl-MooseX-Role-WithOverloading
|
||||
perl-Mozilla-CA
|
||||
perl-Net-CIDR-Lite
|
||||
perl-Net-DBus
|
||||
perl-Net-DNS
|
||||
perl-Net-DNS-Resolver-Programmable
|
||||
perl-Net-HTTP
|
||||
@@ -2629,6 +2729,8 @@ perl-Net-INET6Glue
|
||||
perl-Net-Ident
|
||||
perl-Net-MAC
|
||||
perl-Net-NTP
|
||||
perl-Net-OpenID-Common
|
||||
perl-Net-OpenID-Consumer
|
||||
perl-Net-OpenSSH
|
||||
perl-Net-SFTP-Foreign
|
||||
perl-Net-SMTP-SSL
|
||||
@@ -2647,12 +2749,16 @@ perl-PDF-Writer
|
||||
perl-POD2-Base
|
||||
perl-POSIX-strftime-Compiler
|
||||
perl-Package-Constants
|
||||
perl-Package-DeprecationManager
|
||||
perl-Package-Generator
|
||||
perl-Package-New
|
||||
perl-Package-Stash
|
||||
perl-Package-Stash-XS
|
||||
perl-Package-Variant
|
||||
perl-PadWalker
|
||||
perl-Palm-PDB
|
||||
perl-Parallel-ForkManager
|
||||
perl-Parallel-Iterator
|
||||
perl-Params-Classify
|
||||
perl-Params-Util
|
||||
perl-Params-Validate
|
||||
@@ -2663,6 +2769,7 @@ perl-Parse-RecDescent
|
||||
perl-Path-Class
|
||||
perl-Path-Tiny
|
||||
perl-Pegex
|
||||
perl-Perl-Tidy
|
||||
perl-Perl-Version
|
||||
perl-Perl4-CoreLibs
|
||||
perl-Perl6-Export
|
||||
@@ -2673,6 +2780,7 @@ perl-PerlIO-via-Timeout
|
||||
perl-Pod-Constants
|
||||
perl-Pod-Coverage
|
||||
perl-Pod-LaTeX
|
||||
perl-Pod-POM
|
||||
perl-Pod-Plainer
|
||||
perl-Pod-Spell
|
||||
perl-Pod-Strip
|
||||
@@ -2692,6 +2800,8 @@ perl-Role-Tiny
|
||||
perl-Roman
|
||||
perl-Router-Simple
|
||||
perl-SMTP-Server
|
||||
perl-SQL-Abstract
|
||||
perl-SQL-Translator
|
||||
perl-SUPER
|
||||
perl-Scalar-String
|
||||
perl-Scope-Guard
|
||||
@@ -2735,6 +2845,7 @@ perl-System-Command
|
||||
perl-TAP-Harness-Archive
|
||||
perl-Taint-Util
|
||||
perl-Term-ProgressBar
|
||||
perl-Term-ReadKey
|
||||
perl-Term-ReadLine-Gnu
|
||||
perl-Term-ReadPassword
|
||||
perl-Term-Shell
|
||||
@@ -2742,10 +2853,12 @@ perl-Term-ShellUI
|
||||
perl-Term-Size-Perl
|
||||
perl-Term-Table
|
||||
perl-Term-UI
|
||||
perl-TermReadKey
|
||||
perl-Test-Assertions
|
||||
perl-Test-Base
|
||||
perl-Test-CleanNameSpaces
|
||||
perl-Test-Compile
|
||||
perl-Test-Deep
|
||||
perl-Test-Differences
|
||||
perl-Test-Exception
|
||||
perl-Test-FailWarnings
|
||||
perl-Test-Fatal
|
||||
@@ -2755,6 +2868,7 @@ perl-Test-Identity
|
||||
perl-Test-LeakTrace
|
||||
perl-Test-LectroTest
|
||||
perl-Test-LongString
|
||||
perl-Test-Manifest
|
||||
perl-Test-MockModule
|
||||
perl-Test-MockTime
|
||||
perl-Test-More-UTF8
|
||||
@@ -2763,6 +2877,7 @@ perl-Test-NoWarnings
|
||||
perl-Test-Number-Delta
|
||||
perl-Test-Output
|
||||
perl-Test-Pod
|
||||
perl-Test-Pod-Coverage
|
||||
perl-Test-Refcount
|
||||
perl-Test-Reporter
|
||||
perl-Test-Requires
|
||||
@@ -2770,15 +2885,18 @@ perl-Test-RequiresInternet
|
||||
perl-Test-SharedFork
|
||||
perl-Test-Simple
|
||||
perl-Test-Strict
|
||||
perl-Test-Synopsis
|
||||
perl-Test-TCP
|
||||
perl-Test-Taint
|
||||
perl-Test-UseAllModules
|
||||
perl-Test-Warn
|
||||
perl-Test-Warnings
|
||||
perl-Test-Without-Module
|
||||
perl-Test-YAML
|
||||
perl-Test-utf8
|
||||
perl-Test2-Suite
|
||||
perl-Text-Autoformat
|
||||
perl-Text-Brew
|
||||
perl-Text-CSV
|
||||
perl-Text-CSV-Encoded
|
||||
perl-Text-CSV_XS
|
||||
@@ -2788,6 +2906,7 @@ perl-Text-Format
|
||||
perl-Text-Glob
|
||||
perl-Text-Levenshtein
|
||||
perl-Text-Levenshtein-Damerau
|
||||
perl-Text-Markdown
|
||||
perl-Text-PDF
|
||||
perl-Text-Quoted
|
||||
perl-Text-Reform
|
||||
@@ -2802,6 +2921,7 @@ perl-Tie-IxHash
|
||||
perl-Tie-Simple
|
||||
perl-Time-Duration
|
||||
perl-Time-Duration-Parse
|
||||
perl-Time-ParseDate
|
||||
perl-Time-Period
|
||||
perl-TimeDate
|
||||
perl-Tk-DoubleClick
|
||||
@@ -2841,14 +2961,18 @@ perl-XML-SAX-ExpatXS
|
||||
perl-XML-SAX-Writer
|
||||
perl-XML-Simple
|
||||
perl-XML-SimpleObject
|
||||
perl-XML-Twig
|
||||
perl-XML-Writer
|
||||
perl-XML-XPath
|
||||
perl-XML-XPathEngine
|
||||
perl-YAML
|
||||
perl-YAML-LibYAML
|
||||
perl-YAML-Syck
|
||||
perl-YAML-Tiny
|
||||
perl-aliased
|
||||
perl-autobox
|
||||
perl-autovivification
|
||||
perl-bareword-filehandles
|
||||
perl-boolean
|
||||
perl-common-sense
|
||||
perl-constant-defer
|
||||
@@ -2857,9 +2981,11 @@ perl-gettext
|
||||
perl-indirect
|
||||
perl-libwww-perl
|
||||
perl-local-lib
|
||||
perl-multidimensional
|
||||
perl-namespace-autoclean
|
||||
perl-namespace-clean
|
||||
perl-prefork
|
||||
perl-strictures
|
||||
persistent
|
||||
pesign
|
||||
pexpect
|
||||
@@ -2879,6 +3005,7 @@ pimcommon
|
||||
pinentry
|
||||
pip
|
||||
pip-legacy
|
||||
pipewire
|
||||
pixman
|
||||
pkcs11-helper
|
||||
pkg-config
|
||||
@@ -3026,11 +3153,13 @@ python3
|
||||
pytz
|
||||
pyudev
|
||||
pywbem
|
||||
pyxattr
|
||||
pyxdg
|
||||
pyzmq
|
||||
qca-qt5
|
||||
qemu
|
||||
qemu-lite
|
||||
qml-box2d
|
||||
qpdf
|
||||
qpid-python
|
||||
qqc2-desktop-style
|
||||
@@ -3066,6 +3195,7 @@ qtvirtualkeyboard
|
||||
qtwayland
|
||||
qtwebchannel
|
||||
qtwebengine
|
||||
qtwebkit
|
||||
qtwebsockets
|
||||
qtx11extras
|
||||
qtxmlpatterns
|
||||
@@ -3080,11 +3210,13 @@ rcssmin
|
||||
rdma-core
|
||||
re2c
|
||||
readline
|
||||
recommonmark
|
||||
redis
|
||||
redis-native
|
||||
redland
|
||||
redsocks
|
||||
reno
|
||||
reportlab
|
||||
repoze.lru
|
||||
repoze.who
|
||||
requests
|
||||
@@ -3171,6 +3303,7 @@ snappy
|
||||
snowballstemmer
|
||||
socat
|
||||
sof-crosstool-ng
|
||||
sof-newlib-xtensa
|
||||
solid
|
||||
sonnet
|
||||
sortedcontainers
|
||||
@@ -3183,8 +3316,10 @@ spandsp
|
||||
spark-dep
|
||||
speex
|
||||
speexdsp
|
||||
sphinx-feature-classification
|
||||
sphinx_rtd_theme
|
||||
sphinxcontrib-apidoc
|
||||
sphinxcontrib-blockdiag
|
||||
sphinxcontrib-httpdomain
|
||||
sphinxcontrib-newsfeed
|
||||
sphinxcontrib-websupport
|
||||
@@ -3198,6 +3333,7 @@ sqlite-autoconf
|
||||
sqlparse
|
||||
squashfs-tools
|
||||
sshfs
|
||||
sssd
|
||||
stack
|
||||
startup-notification
|
||||
statsd
|
||||
@@ -3244,6 +3380,7 @@ taskwarrior
|
||||
tbb
|
||||
tcl
|
||||
tcpdump
|
||||
tdb
|
||||
telemetrics-client
|
||||
telepathy-glib
|
||||
telepathy-logger
|
||||
@@ -3261,13 +3398,16 @@ testrepository
|
||||
testresources
|
||||
testscenarios
|
||||
testtools
|
||||
tevent
|
||||
texinfo
|
||||
texlive
|
||||
text-unidecode
|
||||
tflearn
|
||||
tgt
|
||||
thermal_daemon
|
||||
thin-provisioning-tools
|
||||
threadweaver
|
||||
thrift
|
||||
thunar-volman
|
||||
thunderbird
|
||||
thunderbolt-software-user-space
|
||||
@@ -3362,6 +3502,7 @@ wget
|
||||
wheel
|
||||
which
|
||||
widgetsnbextension
|
||||
winpdb
|
||||
wireless-regdb-master
|
||||
wireshark
|
||||
woff2
|
||||
@@ -3390,6 +3531,7 @@ xcursor-themes
|
||||
xcursorgen
|
||||
xdg-desktop-portal
|
||||
xdg-desktop-portal-gtk
|
||||
xdg-desktop-portal-kde
|
||||
xdg-user-dirs
|
||||
xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
@@ -3404,6 +3546,7 @@ xf86-video-amdgpu
|
||||
xf86-video-ati
|
||||
xf86-video-fbdev
|
||||
xf86-video-nouveau
|
||||
xf86-video-qxl
|
||||
xf86-video-vboxvideo
|
||||
xf86-video-vesa
|
||||
xfburn
|
||||
@@ -3441,6 +3584,7 @@ xrdp
|
||||
xrestop
|
||||
xscreensaver
|
||||
xset
|
||||
xsetroot
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwd
|
||||
@@ -3449,6 +3593,7 @@ xz
|
||||
yajl
|
||||
yaml
|
||||
yarl
|
||||
yarn
|
||||
yasm
|
||||
yelp
|
||||
yelp-tools
|
||||
@@ -3456,6 +3601,7 @@ yelp-xsl
|
||||
yum
|
||||
yum-metadata-parser
|
||||
yum-utils
|
||||
zVMCloudConnector
|
||||
zake
|
||||
zc.lockfile
|
||||
zenity
|
||||
|
||||
Reference in New Issue
Block a user