mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d7f6ddcce1 | |||
| 22a927e26b | |||
| 4a29a2d5c1 | |||
| 81ef638151 | |||
| 50b8b07d34 | |||
| 47b634bc75 | |||
| 292ea0bde9 | |||
| b0f7bbfb90 | |||
| 20d0fece07 | |||
| 0f546b20f5 | |||
| 16a09f7fa6 | |||
| 5a438328f2 | |||
| 9ffb55be69 | |||
| af3c84505d | |||
| a865a99283 | |||
| 9e8f0a6ff0 | |||
| 76301d4b78 | |||
| 08bef91443 | |||
| 93202eb3b5 | |||
| 14977f527c | |||
| fa93c354e1 | |||
| 6a54f15cb6 | |||
| fa42020aa9 | |||
| a727fe3722 |
+6
-11
@@ -49,13 +49,6 @@ spdxcheck: $(SPECFILE)
|
||||
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
|
||||
#help for common vulnerabilities and exposures in your package.
|
||||
cvecheck:
|
||||
# https://github.com/ikeydoherty/cve-check-tool
|
||||
# Installation: https://github.com/ikeydoherty/cve-check-tool/wiki
|
||||
cve-check-tool -M $(TOPLVL)/projects/common/mapping $(SPECFILE)
|
||||
|
||||
#help clean: Cleans up the src.rpm file. but not the rpm files or log files.
|
||||
clean:
|
||||
rm -f $(SRPMFILE)
|
||||
@@ -181,7 +174,9 @@ autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
--mock-config $(MOCK_CONFIG_VAL) \
|
||||
--mock-opts "$(MOCK_OPTS)" \
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||
$${NON_INTERACTIVE:+ --non_interactive} \
|
||||
$${SKIP_GIT:+ --skip-git} \
|
||||
$${CLEANUP:+ -C} \
|
||||
$(firstword $(NEWURL) $(URL));
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="."
|
||||
@$(MAKE) spdxcheck
|
||||
@@ -206,12 +201,12 @@ for-review.txt:
|
||||
|
||||
#help autospecnogit: Runs autospec, but does not create a commit
|
||||
autospecnogit:
|
||||
$(MAKE) SKIP_GIT=--skip-git autospec
|
||||
$(MAKE) autospec SKIP_GIT=1
|
||||
|
||||
#help autospecnostate: Runs autospec, but cleans up mock chroots
|
||||
#help and disables interactive mode.
|
||||
autospecnostate:
|
||||
$(MAKE) CLEANUP=-C NON_INTERACTIVE=--non_interactive autospec
|
||||
$(MAKE) autospec CLEANUP=1 NON_INTERACTIVE=1
|
||||
|
||||
scanlicense:
|
||||
python3 $(TOPLVL)/projects/autospec/autospec/autospec.py -t . --config $(AUTOSPEC_CONF) --license-only $(firstword $(NEWURL) $(URL)) --name $(PKG_NAME)
|
||||
@@ -220,7 +215,7 @@ scanlicense:
|
||||
bump:
|
||||
git pull --rebase
|
||||
$(MAKE) bumpnogit
|
||||
git add *.spec release
|
||||
git add $(SPECFILE) release
|
||||
git commit -a -m "version bump from $(shell rpmspec -D '_vendor clr' --srpm -q --queryformat '%{VERSION}-%{RELEASE}\n' $(SPECFILE)) to `rpmspec -D '_vendor clr' --srpm -q --queryformat '%{VERSION}-%{RELEASE}\n' $(SPECFILE)`"
|
||||
|
||||
#help bumpnogit: Increments the release file by one and does not commit changes.
|
||||
|
||||
+2
-8
@@ -34,7 +34,7 @@ $(proj_PKGS):
|
||||
git clone $(PRJ_BASE_URL)/$$proj projects/$$proj; \
|
||||
cd projects/$$proj; \
|
||||
if [ "$$proj" = "autospec" ] ; then \
|
||||
git remote set-url --push origin https://github.com/clearlinux/autospec.git; \
|
||||
git remote set-url --push origin git@github.com:clearlinux/autospec.git; \
|
||||
else \
|
||||
$(call gitoliteurl,projects/$$proj); \
|
||||
fi; \
|
||||
@@ -56,12 +56,6 @@ $(clone_PKGS): $(PACKAGES_FILE) packages/common/Makefile.common
|
||||
$(call subjectprefix,$$pkg); \
|
||||
)
|
||||
|
||||
#help cvecheck: Checks for common vulnerabilities and exposures in your code.
|
||||
cvecheck:
|
||||
# https://github.com/ikeydoherty/cve-check-tool
|
||||
# Installation: https://github.com/ikeydoherty/cve-check-tool/wiki
|
||||
cve-check-tool -n -M $(TOPLVL)/projects/common/mapping $(PACKAGES_FILE)
|
||||
|
||||
#help pull: Performs a git pull --rebase for each package repo, avoiding the creation
|
||||
#help of merge commits, while displaying any changes since your last pull. It is
|
||||
#help silent if there are no changes.
|
||||
@@ -83,7 +77,7 @@ ${PULL_PKGS}:
|
||||
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit $$O..$$N; echo; \
|
||||
fi ; \
|
||||
if [ "$$p" = "projects/autospec" ] ; then \
|
||||
git remote set-url --push origin https://github.com/clearlinux/autospec.git; \
|
||||
git remote set-url --push origin git@github.com:clearlinux/autospec.git; \
|
||||
else \
|
||||
$(call gitoliteurl,$$p); \
|
||||
fi ; \
|
||||
|
||||
@@ -289,6 +289,7 @@ R-conting
|
||||
R-corpcor
|
||||
R-corrgram
|
||||
R-corrplot
|
||||
R-covr
|
||||
R-cowplot
|
||||
R-crayon
|
||||
R-crosstalk
|
||||
@@ -505,6 +506,7 @@ R-leaps
|
||||
R-lfe
|
||||
R-lhs
|
||||
R-libcoin
|
||||
R-lifecycle
|
||||
R-linprog
|
||||
R-lintr
|
||||
R-listenv
|
||||
@@ -809,6 +811,7 @@ R-survey
|
||||
R-svUnit
|
||||
R-sys
|
||||
R-systemfit
|
||||
R-systemfonts
|
||||
R-tau
|
||||
R-taxize
|
||||
R-tclust
|
||||
@@ -1028,6 +1031,7 @@ asio
|
||||
asn1crypto
|
||||
aspell
|
||||
aspell-en
|
||||
aspell-es
|
||||
aspell-pt_BR
|
||||
assimp
|
||||
astor
|
||||
@@ -1153,6 +1157,7 @@ buildreq-kernel
|
||||
buildreq-make
|
||||
buildreq-meson
|
||||
buildreq-mvn
|
||||
buildreq-nginx
|
||||
buildreq-php
|
||||
buildreq-qmake
|
||||
buildreq-scons
|
||||
@@ -1180,7 +1185,6 @@ capnproto
|
||||
caribou
|
||||
case
|
||||
cassandra
|
||||
cassandra-dep
|
||||
castellan
|
||||
casync
|
||||
catch2
|
||||
@@ -1255,6 +1259,7 @@ cmake
|
||||
cmd2
|
||||
cmocka
|
||||
cmrt
|
||||
cmus
|
||||
cnf
|
||||
cni
|
||||
cni-plugins
|
||||
@@ -1305,7 +1310,6 @@ compat-gmime-26
|
||||
compat-gspell-soname1
|
||||
compat-gtksourceview-soname3
|
||||
compat-guile-soname20
|
||||
compat-hdf5-soname10
|
||||
compat-hwloc-soname5
|
||||
compat-hyperscan-soname4
|
||||
compat-icu4c-soname61
|
||||
@@ -1321,7 +1325,6 @@ compat-libnftnl-soname7
|
||||
compat-libpng-soname12
|
||||
compat-libva-soname1
|
||||
compat-libwebp-soname6
|
||||
compat-llvm-soname4
|
||||
compat-llvm-soname5
|
||||
compat-llvm-soname6
|
||||
compat-llvm-soname7
|
||||
@@ -1331,7 +1334,6 @@ compat-nettle-soname6
|
||||
compat-opencv-soname32
|
||||
compat-opencv-soname33
|
||||
compat-opencv-soname34
|
||||
compat-openexr-soname23
|
||||
compat-openssl-soname-10
|
||||
compat-proj-soname13
|
||||
compat-protobuf-soname14
|
||||
@@ -1356,6 +1358,7 @@ containerd
|
||||
contextlib2
|
||||
cookies
|
||||
coreutils
|
||||
coturn
|
||||
cotyledon
|
||||
cov-core
|
||||
coverage
|
||||
@@ -1659,7 +1662,6 @@ flatpak
|
||||
flatpak-builder
|
||||
fldigi
|
||||
flex
|
||||
flink-dep
|
||||
fllog
|
||||
flmsg
|
||||
flnet
|
||||
@@ -1776,6 +1778,7 @@ gnome-disk-utility
|
||||
gnome-doc-utils
|
||||
gnome-flashback
|
||||
gnome-font-viewer
|
||||
gnome-getting-started-docs
|
||||
gnome-icon-theme
|
||||
gnome-initial-setup
|
||||
gnome-keyring
|
||||
@@ -1809,6 +1812,10 @@ gnupg
|
||||
gnuplot
|
||||
gnutls
|
||||
go
|
||||
go-github.com-BurntSushi-toml
|
||||
go-github.com-inconshreveable-mousetrap
|
||||
go-github.com-spf13-cobra
|
||||
go-github.com-spf13-pflag
|
||||
goaccess
|
||||
gobject-introspection
|
||||
golang-github-cpuguy83-go-md2man
|
||||
@@ -1830,7 +1837,6 @@ gpm
|
||||
gpredict
|
||||
gptfdisk
|
||||
gradle
|
||||
gradle-dep
|
||||
granatier
|
||||
grantlee
|
||||
grantleetheme
|
||||
@@ -1886,6 +1892,7 @@ hardinfo
|
||||
hardlink
|
||||
harfbuzz
|
||||
haskell-random
|
||||
haveged
|
||||
hdf5
|
||||
hdmedians
|
||||
hdparm
|
||||
@@ -1936,6 +1943,7 @@ iceauth
|
||||
icecream
|
||||
icon-naming-utils
|
||||
icu4c
|
||||
idle-python3.7-assets
|
||||
idna
|
||||
idna-ssl
|
||||
ifaddr
|
||||
@@ -2006,6 +2014,7 @@ isync
|
||||
itsdangerous
|
||||
itstool
|
||||
iw
|
||||
iwd
|
||||
ixion
|
||||
jack2
|
||||
jansson
|
||||
@@ -2023,6 +2032,7 @@ josepy
|
||||
jq
|
||||
json-c
|
||||
json-glib
|
||||
json5
|
||||
jsoncpp
|
||||
jsondiff
|
||||
jsonpatch
|
||||
@@ -2356,6 +2366,7 @@ libdmx
|
||||
libdnf
|
||||
libdrm
|
||||
libe-book
|
||||
libeconf
|
||||
libedit
|
||||
libepoxy
|
||||
libepubgen
|
||||
@@ -2444,6 +2455,7 @@ libmetalink
|
||||
libmicrohttpd
|
||||
libmnl
|
||||
libmodbus
|
||||
libmodplug
|
||||
libmodulemd
|
||||
libmpack
|
||||
libmpack-lua
|
||||
@@ -2488,8 +2500,8 @@ libqb
|
||||
libqmi
|
||||
libqtxdg
|
||||
libqxp
|
||||
librabbitmq
|
||||
libratbag
|
||||
librdkafka
|
||||
libreoffice
|
||||
librepo
|
||||
librevenge
|
||||
@@ -2525,7 +2537,6 @@ libtermkey
|
||||
libthai
|
||||
libtheora
|
||||
libtirpc
|
||||
libtk-img
|
||||
libtool
|
||||
libtorrent-rasterbar
|
||||
libudev0-shim
|
||||
@@ -2620,6 +2631,8 @@ lsof
|
||||
lsscsi
|
||||
ltp
|
||||
ltrace
|
||||
lttng-tools
|
||||
lttng-ust
|
||||
lua
|
||||
lua52
|
||||
lualgi
|
||||
@@ -2670,6 +2683,7 @@ mdds
|
||||
media-player-info
|
||||
mediasdk
|
||||
meld
|
||||
memc-nginx-module
|
||||
memcached
|
||||
memkind
|
||||
memshrinker
|
||||
@@ -2690,6 +2704,9 @@ mido
|
||||
milou
|
||||
minetest
|
||||
minetest_game
|
||||
mingw-binutils
|
||||
mingw-crt
|
||||
mingw-gcc
|
||||
minicom
|
||||
minimodem
|
||||
mistune
|
||||
@@ -2743,6 +2760,7 @@ mtr
|
||||
multidict
|
||||
multimon-ng
|
||||
multipath-tools
|
||||
mumble
|
||||
munch
|
||||
munkres
|
||||
muparser
|
||||
@@ -2751,16 +2769,28 @@ musl
|
||||
mutagen
|
||||
mutt
|
||||
mutter
|
||||
mvn-Fenzo
|
||||
mvn-GMetrics
|
||||
mvn-HdrHistogram
|
||||
mvn-HikariCP-java7
|
||||
mvn-JavaEWAH
|
||||
mvn-JsonPath
|
||||
mvn-LatencyUtils
|
||||
mvn-RoaringBitmap
|
||||
mvn-TipTip
|
||||
mvn-accessors-smart
|
||||
mvn-activation
|
||||
mvn-addthis-oss-jar-pom
|
||||
mvn-aether-core
|
||||
mvn-aggdesigner
|
||||
mvn-airbase
|
||||
mvn-aircompressor
|
||||
mvn-airlift
|
||||
mvn-airlift-slice
|
||||
mvn-airlift-units
|
||||
mvn-airline
|
||||
mvn-akka
|
||||
mvn-aliyun-openapi-java-sdk
|
||||
mvn-aliyun-oss-java-sdk
|
||||
mvn-animal-sniffer
|
||||
mvn-ant
|
||||
@@ -2772,9 +2802,14 @@ mvn-apache
|
||||
mvn-apache-jar-resource-bundle
|
||||
mvn-apache-log4j-extras
|
||||
mvn-apache-rat
|
||||
mvn-apiguardian
|
||||
mvn-archetype
|
||||
mvn-arpack_combined_all
|
||||
mvn-arrow
|
||||
mvn-asciidoctor-gradle-plugin
|
||||
mvn-asciidoctorj
|
||||
mvn-asciidoctorj-groovy-dsl
|
||||
mvn-asciidoctorj-pdf
|
||||
mvn-asm
|
||||
mvn-assertj-core
|
||||
mvn-assertj-parent-pom
|
||||
@@ -2782,6 +2817,7 @@ mvn-autolink
|
||||
mvn-automaton
|
||||
mvn-avalon-framework
|
||||
mvn-avro
|
||||
mvn-awaitility
|
||||
mvn-aws-java-sdk
|
||||
mvn-azure-data-lake-store-java
|
||||
mvn-azure-keyvault-java
|
||||
@@ -2797,23 +2833,29 @@ mvn-breeze-macros_2.11
|
||||
mvn-breeze_2.11
|
||||
mvn-breeze_2.12
|
||||
mvn-build-helper-maven-plugin
|
||||
mvn-build-scan-plugin
|
||||
mvn-buildnumber-maven-plugin
|
||||
mvn-byte-buddy
|
||||
mvn-byteman
|
||||
mvn-calcite
|
||||
mvn-calcite-avatica
|
||||
mvn-camel
|
||||
mvn-cassandra
|
||||
mvn-cdi-api
|
||||
mvn-cglib
|
||||
mvn-checker-compat-qual
|
||||
mvn-checkerframework
|
||||
mvn-checkstyle
|
||||
mvn-chill-java
|
||||
mvn-chill_2.11
|
||||
mvn-chill_2.12
|
||||
mvn-classutil_2.12
|
||||
mvn-classworlds
|
||||
mvn-client_java
|
||||
mvn-clirr-maven-plugin
|
||||
mvn-codehaus-jackson
|
||||
mvn-codenarc
|
||||
mvn-common
|
||||
mvn-commons-beanutils
|
||||
mvn-commons-chain
|
||||
mvn-commons-cli
|
||||
@@ -2845,58 +2887,87 @@ mvn-commons-validator
|
||||
mvn-compile-command-annotations
|
||||
mvn-compiler-interface
|
||||
mvn-compress-lzf
|
||||
mvn-concurrentlinkedhashmap
|
||||
mvn-config
|
||||
mvn-crc32ex
|
||||
mvn-cssparser
|
||||
mvn-curator
|
||||
mvn-datanucleus-api-jdo
|
||||
mvn-datanucleus-core
|
||||
mvn-datanucleus-rdbms
|
||||
mvn-dd-plist
|
||||
mvn-decentxml
|
||||
mvn-derby
|
||||
mvn-directory-jdbm
|
||||
mvn-directory-ldap-api
|
||||
mvn-directory-maven-plugin
|
||||
mvn-directory-mavibot
|
||||
mvn-directory-project
|
||||
mvn-directory-server
|
||||
mvn-disruptor
|
||||
mvn-disruptor_thrift_server
|
||||
mvn-dnsjava
|
||||
mvn-dom4j
|
||||
mvn-doxia
|
||||
mvn-doxia-sitetools
|
||||
mvn-doxia-tools
|
||||
mvn-droolsjbpm-build-bootstrap
|
||||
mvn-easymock
|
||||
mvn-ecj
|
||||
mvn-ehcache
|
||||
mvn-eigenbase-properties
|
||||
mvn-elasticsearch
|
||||
mvn-enforcer
|
||||
mvn-error_prone_annotations
|
||||
mvn-exec-maven-plugin
|
||||
mvn-extra-enforcer-rules
|
||||
mvn-ezmorph
|
||||
mvn-fastutil
|
||||
mvn-felix
|
||||
mvn-file-management
|
||||
mvn-findbugs
|
||||
mvn-findbugs-annotations
|
||||
mvn-flatbuffers
|
||||
mvn-flexmark-java
|
||||
mvn-flink-shaded
|
||||
mvn-freemarker
|
||||
mvn-frocksdb
|
||||
mvn-fst
|
||||
mvn-ftpserver
|
||||
mvn-generex
|
||||
mvn-genesis
|
||||
mvn-geronimo-jcache_1.0_spec
|
||||
mvn-geronimo-spec-jaxrpc
|
||||
mvn-gmaven
|
||||
mvn-google
|
||||
mvn-google-api-java-client
|
||||
mvn-google-api-services-storage
|
||||
mvn-google-collections
|
||||
mvn-google-http-java-client
|
||||
mvn-gossip
|
||||
mvn-gradle-download-task
|
||||
mvn-gradle-groovy-all
|
||||
mvn-gradle-idea-ext-plugin
|
||||
mvn-gradle-kotlin
|
||||
mvn-grizzled-scala_2.12
|
||||
mvn-grizzled-slf4j_2.11
|
||||
mvn-grizzled-slf4j_2.12
|
||||
mvn-grizzly
|
||||
mvn-grolifant
|
||||
mvn-groovy
|
||||
mvn-gson
|
||||
mvn-guava
|
||||
mvn-guice
|
||||
mvn-guice-servlet
|
||||
mvn-h2database
|
||||
mvn-hadoop
|
||||
mvn-hadoop-aliyun
|
||||
mvn-hamcrest
|
||||
mvn-handlebars.java
|
||||
mvn-hbase
|
||||
mvn-hbc
|
||||
mvn-hibernate-validator
|
||||
mvn-high-scale-lib
|
||||
mvn-hive
|
||||
mvn-hk2
|
||||
mvn-hppc
|
||||
@@ -2911,14 +2982,23 @@ mvn-httpcomponents-parent
|
||||
mvn-hydromatic-parent
|
||||
mvn-icu4j
|
||||
mvn-incremental-compiler
|
||||
mvn-incubator-datasketches-java
|
||||
mvn-influxdb-java
|
||||
mvn-intellij.annotations
|
||||
mvn-ion-java
|
||||
mvn-irclib
|
||||
mvn-ivy
|
||||
mvn-j2objc-annotations
|
||||
mvn-jBCrypt
|
||||
mvn-jackrabbit
|
||||
mvn-jackson-annotations
|
||||
mvn-jackson-bom
|
||||
mvn-jackson-core
|
||||
mvn-jackson-databind
|
||||
mvn-jackson-dataformat-cbor
|
||||
mvn-jackson-dataformat-smile
|
||||
mvn-jackson-dataformat-yaml
|
||||
mvn-jackson-dataformats-binary
|
||||
mvn-jackson-jaxrs-providers
|
||||
mvn-jackson-module-jaxb-annotations
|
||||
mvn-jackson-module-paranamer
|
||||
@@ -2927,6 +3007,7 @@ mvn-jackson-module-scala_2.12
|
||||
mvn-jackson-modules-base
|
||||
mvn-jackson-parent
|
||||
mvn-jacoco
|
||||
mvn-jamm
|
||||
mvn-jamon-java-parent
|
||||
mvn-jamon-parent
|
||||
mvn-jamon-runtime
|
||||
@@ -2947,11 +3028,17 @@ mvn-javax.servlet-api
|
||||
mvn-javax.ws.rs-api
|
||||
mvn-javolution
|
||||
mvn-jaxb-api
|
||||
mvn-jaxb-core
|
||||
mvn-jaxb-impl
|
||||
mvn-jaxb-v2
|
||||
mvn-jaxen
|
||||
mvn-jboss-logging
|
||||
mvn-jboss-parent
|
||||
mvn-jchardet
|
||||
mvn-jcifs
|
||||
mvn-jcip-annotations
|
||||
mvn-jcodings
|
||||
mvn-jcommander
|
||||
mvn-jdependency
|
||||
mvn-jdiff
|
||||
mvn-jdo-api
|
||||
@@ -2960,23 +3047,29 @@ mvn-jdom2
|
||||
mvn-jersey
|
||||
mvn-jersey-apache-client4
|
||||
mvn-jersey-json
|
||||
mvn-jetbrains-annotations
|
||||
mvn-jets3t
|
||||
mvn-jettison
|
||||
mvn-jetty
|
||||
mvn-jetty-parent
|
||||
mvn-jgit
|
||||
mvn-jhighlight
|
||||
mvn-jline
|
||||
mvn-jmh
|
||||
mvn-jmh-gradle-plugin
|
||||
mvn-jmock
|
||||
mvn-jmxutils
|
||||
mvn-jna
|
||||
mvn-jniloader
|
||||
mvn-joauth
|
||||
mvn-joda-convert
|
||||
mvn-joda-time
|
||||
mvn-jodd
|
||||
mvn-joni
|
||||
mvn-jopt-simple
|
||||
mvn-jpam
|
||||
mvn-jpmml-model
|
||||
mvn-jruby
|
||||
mvn-jsch
|
||||
mvn-jsch.agentproxy.connector-factory
|
||||
mvn-jsch.agentproxy.core
|
||||
@@ -2995,6 +3088,7 @@ mvn-json4s_2.11
|
||||
mvn-jsonassert
|
||||
mvn-jsoup
|
||||
mvn-jsp-api
|
||||
mvn-jsr166e
|
||||
mvn-jsr250-api
|
||||
mvn-jsr305
|
||||
mvn-jsr311
|
||||
@@ -3003,11 +3097,23 @@ mvn-jtidy
|
||||
mvn-jtransforms
|
||||
mvn-junit
|
||||
mvn-junit-interface
|
||||
mvn-junit-xml-parser
|
||||
mvn-junit5
|
||||
mvn-jython-standalone
|
||||
mvn-jzlib
|
||||
mvn-kafka-clients
|
||||
mvn-kafka_2.11
|
||||
mvn-kafka_2.12
|
||||
mvn-kerby
|
||||
mvn-keytool
|
||||
mvn-klob
|
||||
mvn-kolor
|
||||
mvn-kosmosfs
|
||||
mvn-kotlin
|
||||
mvn-kotlinx-coroutines
|
||||
mvn-kryo
|
||||
mvn-ktlint
|
||||
mvn-ktlint-gradle
|
||||
mvn-kubernetes-client
|
||||
mvn-kxml2
|
||||
mvn-ldapsdk
|
||||
@@ -3016,16 +3122,24 @@ mvn-license-maven-plugin
|
||||
mvn-log4j
|
||||
mvn-logback-classic
|
||||
mvn-logback-core
|
||||
mvn-logging-log4j2
|
||||
mvn-logging-parent
|
||||
mvn-logkit
|
||||
mvn-lombok
|
||||
mvn-lucene-solr
|
||||
mvn-lz4-java
|
||||
mvn-machinist_2.11
|
||||
mvn-machinist_2.12
|
||||
mvn-macro-compat_2.11
|
||||
mvn-macro-compat_2.12
|
||||
mvn-mail
|
||||
mvn-mapr-hadoop
|
||||
mvn-maprfs
|
||||
mvn-maven
|
||||
mvn-maven-aether-provider
|
||||
mvn-maven-ant-tasks
|
||||
mvn-maven-antrun-plugin
|
||||
mvn-maven-archetype
|
||||
mvn-maven-archiver
|
||||
mvn-maven-artifact
|
||||
mvn-maven-artifact-manager
|
||||
@@ -3042,9 +3156,9 @@ mvn-maven-core
|
||||
mvn-maven-dependency-plugin
|
||||
mvn-maven-deploy-plugin
|
||||
mvn-maven-docck-plugin
|
||||
mvn-maven-embedder
|
||||
mvn-maven-error-diagnostics
|
||||
mvn-maven-filtering
|
||||
mvn-maven-git-commit-id-plugin
|
||||
mvn-maven-gpg-plugin
|
||||
mvn-maven-help-plugin
|
||||
mvn-maven-install-plugin
|
||||
@@ -3075,35 +3189,41 @@ mvn-maven-reporting-impl
|
||||
mvn-maven-repository-builder
|
||||
mvn-maven-repository-metadata
|
||||
mvn-maven-resolver
|
||||
mvn-maven-resolver-provider
|
||||
mvn-maven-resources-plugin
|
||||
mvn-maven-scm
|
||||
mvn-maven-scm-provider-svnjava
|
||||
mvn-maven-scm-publish-plugin
|
||||
mvn-maven-script-interpreter
|
||||
mvn-maven-settings
|
||||
mvn-maven-settings-builder
|
||||
mvn-maven-shade-plugin
|
||||
mvn-maven-shared
|
||||
mvn-maven-shared-utils
|
||||
mvn-maven-site-plugin
|
||||
mvn-maven-slf4j-provider
|
||||
mvn-maven-source-plugin
|
||||
mvn-maven-surefire
|
||||
mvn-maven-toolchain
|
||||
mvn-maven-war-plugin
|
||||
mvn-mesos
|
||||
mvn-metrics
|
||||
mvn-metrics-reporter-config
|
||||
mvn-micrometer
|
||||
mvn-mina
|
||||
mvn-mina-sshd
|
||||
mvn-minimal-json
|
||||
mvn-minlog
|
||||
mvn-mockito
|
||||
mvn-mockito-core
|
||||
mvn-mockito-kotlin
|
||||
mvn-mockk
|
||||
mvn-mockserver
|
||||
mvn-modello
|
||||
mvn-mojo-parent
|
||||
mvn-mojo-signature
|
||||
mvn-moshi
|
||||
mvn-msgpack-java
|
||||
mvn-mssql-jdbc
|
||||
mvn-mustache.java
|
||||
mvn-mvnplugins
|
||||
mvn-mysql-connector-java
|
||||
mvn-native-platform
|
||||
@@ -3113,8 +3233,11 @@ mvn-netty
|
||||
mvn-nexus-maven-plugins
|
||||
mvn-nexus-public
|
||||
mvn-nicoulaj-parent
|
||||
mvn-nifi
|
||||
mvn-nifi-registry
|
||||
mvn-nimbus-jose-jwt
|
||||
mvn-nuiton
|
||||
mvn-oauth-java-client
|
||||
mvn-objenesis
|
||||
mvn-ohc
|
||||
mvn-ojalgo
|
||||
@@ -3122,6 +3245,7 @@ mvn-okhttp
|
||||
mvn-okio
|
||||
mvn-opencsv
|
||||
mvn-openhtmltopdf-parent
|
||||
mvn-opentest4j
|
||||
mvn-orc
|
||||
mvn-org.apache.felix.bundlerepository
|
||||
mvn-org.eclipse.sisu.inject
|
||||
@@ -3130,16 +3254,20 @@ mvn-org.osgi.compendium
|
||||
mvn-org.osgi.core
|
||||
mvn-oro
|
||||
mvn-osgi-resource-locator
|
||||
mvn-oshi
|
||||
mvn-oss-parents
|
||||
mvn-ow2
|
||||
mvn-paradise
|
||||
mvn-paranamer
|
||||
mvn-parboiled
|
||||
mvn-parquet-format
|
||||
mvn-parquet-mr
|
||||
mvn-pdfbox
|
||||
mvn-pdfbox-graphics2d
|
||||
mvn-pegdown
|
||||
mvn-pgjdbc
|
||||
mvn-pgjdbc-parent-poms
|
||||
mvn-picocli
|
||||
mvn-plexus
|
||||
mvn-plexus-archiver
|
||||
mvn-plexus-build-api
|
||||
@@ -3148,6 +3276,7 @@ mvn-plexus-classworlds
|
||||
mvn-plexus-cli
|
||||
mvn-plexus-compiler
|
||||
mvn-plexus-containers
|
||||
mvn-plexus-digest
|
||||
mvn-plexus-i18n
|
||||
mvn-plexus-interactivity
|
||||
mvn-plexus-interpolation
|
||||
@@ -3156,30 +3285,49 @@ mvn-plexus-languages
|
||||
mvn-plexus-resources
|
||||
mvn-plexus-utils
|
||||
mvn-plexus-velocity
|
||||
mvn-plugin-publish-plugin
|
||||
mvn-pmaven
|
||||
mvn-powermock
|
||||
mvn-powermock-reflect
|
||||
mvn-presto
|
||||
mvn-protobuf-java
|
||||
mvn-py4j
|
||||
mvn-pyrolite
|
||||
mvn-qdox
|
||||
mvn-rabbitmq
|
||||
mvn-re2j
|
||||
mvn-reactivestreams
|
||||
mvn-reflectasm
|
||||
mvn-reflections
|
||||
mvn-retrofit
|
||||
mvn-rhino
|
||||
mvn-saaj-api
|
||||
mvn-sac
|
||||
mvn-saxon
|
||||
mvn-sbt-interface
|
||||
mvn-scala-compiler
|
||||
mvn-scala-java8-compat
|
||||
mvn-scala-library
|
||||
mvn-scala-logging
|
||||
mvn-scala-maven-plugin
|
||||
mvn-scala-parser-combinators_2.11
|
||||
mvn-scala-parser-combinators_2.12
|
||||
mvn-scala-reflect
|
||||
mvn-scala-xml_2.11
|
||||
mvn-scala-xml_2.12
|
||||
mvn-scalacheck
|
||||
mvn-scalactic_2.11
|
||||
mvn-scalactic_2.12
|
||||
mvn-scalastyle-maven-plugin
|
||||
mvn-scalatest-maven-plugin
|
||||
mvn-scalatest_2.11
|
||||
mvn-scalatest_2.12
|
||||
mvn-schema-registry
|
||||
mvn-scopt_2.11
|
||||
mvn-scopt_2.12
|
||||
mvn-selenium
|
||||
mvn-semver
|
||||
mvn-semver4j
|
||||
mvn-sequence-library
|
||||
mvn-servicemix-bundles
|
||||
mvn-servicemix-pom
|
||||
@@ -3187,6 +3335,8 @@ mvn-servlet-api
|
||||
mvn-shapeless_2.11
|
||||
mvn-shapeless_2.12
|
||||
mvn-siesta
|
||||
mvn-sigar
|
||||
mvn-simpleframework
|
||||
mvn-sisu
|
||||
mvn-sisu-guice
|
||||
mvn-sisu-maven-plugin
|
||||
@@ -3196,12 +3346,14 @@ mvn-snappy
|
||||
mvn-snappy-java
|
||||
mvn-sonatype-aether
|
||||
mvn-sonatype-plexus-sec-dispatcher
|
||||
mvn-spatial4j
|
||||
mvn-spice-zapper
|
||||
mvn-spire_2.11
|
||||
mvn-spire_2.12
|
||||
mvn-spock
|
||||
mvn-spotbugs
|
||||
mvn-sqljet
|
||||
mvn-ssl-config
|
||||
mvn-sslext
|
||||
mvn-stax-api
|
||||
mvn-stax2-api
|
||||
@@ -3212,12 +3364,17 @@ mvn-struts
|
||||
mvn-super-csv
|
||||
mvn-svnkit
|
||||
mvn-swagger-core
|
||||
mvn-t-digest
|
||||
mvn-test-interface
|
||||
mvn-testng
|
||||
mvn-thrift
|
||||
mvn-tomcat
|
||||
mvn-treelayout
|
||||
mvn-trilead-ssh2
|
||||
mvn-trove4j
|
||||
mvn-tycho
|
||||
mvn-uncommons-maths
|
||||
mvn-unirest-java
|
||||
mvn-univocity-parsers
|
||||
mvn-unused
|
||||
mvn-validation-api
|
||||
@@ -3230,6 +3387,7 @@ mvn-weld-api
|
||||
mvn-weld-parent
|
||||
mvn-wikitext-project
|
||||
mvn-wildfly-openssl
|
||||
mvn-wiremock
|
||||
mvn-woodstox-core
|
||||
mvn-wsdl4j
|
||||
mvn-xalan
|
||||
@@ -3239,10 +3397,12 @@ mvn-xercesImpl
|
||||
mvn-xercesMinimal
|
||||
mvn-xml-apis
|
||||
mvn-xml-resolver
|
||||
mvn-xmlParserAPIs
|
||||
mvn-xmlenc
|
||||
mvn-xmlpull
|
||||
mvn-xmlunit
|
||||
mvn-xmlunit-core
|
||||
mvn-xom
|
||||
mvn-xpp3_min
|
||||
mvn-xstream
|
||||
mvn-xz
|
||||
@@ -3275,7 +3435,6 @@ ndg_httpsclient
|
||||
ndpi
|
||||
neofetch
|
||||
neomutt
|
||||
neon
|
||||
neovim
|
||||
net-snmp
|
||||
net-tools
|
||||
@@ -3300,6 +3459,11 @@ nftables
|
||||
nghttp2
|
||||
nginx
|
||||
nginx-mainline
|
||||
nginx_cookie_flag_module
|
||||
ngraph
|
||||
ngx_brotli
|
||||
ngx_http_auth_pam_module
|
||||
ngx_http_enhanced_memcached_module
|
||||
nicstat
|
||||
nim
|
||||
ninja
|
||||
@@ -3335,6 +3499,7 @@ ntplib
|
||||
numactl
|
||||
numatop
|
||||
numba
|
||||
numlockx
|
||||
numpy
|
||||
numpy-stl
|
||||
numpydoc
|
||||
@@ -3361,6 +3526,7 @@ open-isns
|
||||
open-lldp
|
||||
open-vm-tools
|
||||
openQA
|
||||
open_model_zoo
|
||||
openal-soft
|
||||
openblas
|
||||
openbox
|
||||
@@ -3373,6 +3539,7 @@ openjade
|
||||
openjdk
|
||||
openjdk11
|
||||
openjdk12
|
||||
openjdk13
|
||||
openldap
|
||||
openmpi
|
||||
openscad
|
||||
@@ -3470,6 +3637,7 @@ patchelf
|
||||
patchutils
|
||||
pathlib
|
||||
pathlib2
|
||||
pathspec
|
||||
patsy
|
||||
pavucontrol
|
||||
pbr
|
||||
@@ -3502,6 +3670,7 @@ perl-AnyEvent-CacheDNS
|
||||
perl-Apache-Htpasswd
|
||||
perl-Apache-Session
|
||||
perl-App-cpanminus
|
||||
perl-App-perlbrew
|
||||
perl-AppConfig
|
||||
perl-Archive-Cpio
|
||||
perl-Archive-Extract
|
||||
@@ -3521,6 +3690,7 @@ perl-B-Hooks-OP-Check
|
||||
perl-B-Keywords
|
||||
perl-BDB
|
||||
perl-BSD-Resource
|
||||
perl-Bencode
|
||||
perl-Biblio-EndnoteStyle
|
||||
perl-Bit-Vector
|
||||
perl-Browser-Open
|
||||
@@ -3563,6 +3733,7 @@ perl-Class-Factory-Util
|
||||
perl-Class-Inspector
|
||||
perl-Class-Load
|
||||
perl-Class-Load-XS
|
||||
perl-Class-Measure
|
||||
perl-Class-Method-Modifiers
|
||||
perl-Class-MethodMaker
|
||||
perl-Class-Mix
|
||||
@@ -3586,10 +3757,12 @@ perl-Config-Grammar
|
||||
perl-Config-IniFiles
|
||||
perl-Config-Std
|
||||
perl-Config-Tiny
|
||||
perl-Const-Fast
|
||||
perl-Context-Preserve
|
||||
perl-Contextual-Return
|
||||
perl-Convert-ASN1
|
||||
perl-Convert-Bencode
|
||||
perl-Convert-Bencode_XS
|
||||
perl-Convert-Binary-C
|
||||
perl-Cookie-Baker
|
||||
perl-Coro
|
||||
@@ -3695,6 +3868,7 @@ perl-Exception-Class
|
||||
perl-Exporter-Declare
|
||||
perl-Exporter-Easy
|
||||
perl-Exporter-Lite
|
||||
perl-Exporter-Tidy
|
||||
perl-Exporter-Tiny
|
||||
perl-ExtUtils-Config
|
||||
perl-ExtUtils-Depends
|
||||
@@ -3745,6 +3919,7 @@ perl-Frontier-RPC
|
||||
perl-Future
|
||||
perl-Future-IO-ImplBase
|
||||
perl-GD-Barcode
|
||||
perl-GIS-Distance
|
||||
perl-Geo-Distance
|
||||
perl-Geo-IP
|
||||
perl-Geo-IPfree
|
||||
@@ -4263,6 +4438,7 @@ php-protobuf
|
||||
php-psr
|
||||
php-radius
|
||||
php-raphf
|
||||
php-rdkafka
|
||||
php-redis
|
||||
php-scrypt
|
||||
php-stackdriver_debugger
|
||||
@@ -4312,11 +4488,13 @@ plasma-sdk
|
||||
plasma-vault
|
||||
plasma-workspace
|
||||
plasma-workspace-wallpapers
|
||||
plata-theme
|
||||
pluggy
|
||||
ply
|
||||
plzip
|
||||
pm-graph
|
||||
pmdk
|
||||
pmix
|
||||
po4a
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
@@ -4452,7 +4630,6 @@ python-dateutil
|
||||
python-dateutil-legacypython
|
||||
python-designateclient
|
||||
python-distutils-extra
|
||||
python-dldt
|
||||
python-editor
|
||||
python-future
|
||||
python-gflags
|
||||
@@ -4567,7 +4744,6 @@ quilt
|
||||
qwt
|
||||
rabbitmq-c
|
||||
rabbitmq-java-client
|
||||
rabbitmq-java-client-dep
|
||||
rabbitmq-server
|
||||
radvd
|
||||
rage
|
||||
@@ -4584,6 +4760,7 @@ rebootmgr
|
||||
recommonmark
|
||||
redis
|
||||
redis-native
|
||||
redis2-nginx-module
|
||||
redland
|
||||
redshift
|
||||
redsocks
|
||||
@@ -4693,6 +4870,7 @@ simg-tools
|
||||
simple-scan
|
||||
simplegeneric
|
||||
simplejson
|
||||
simplescreenrecorder
|
||||
singledispatch
|
||||
sip
|
||||
six
|
||||
@@ -4718,6 +4896,7 @@ source-highlight
|
||||
sox
|
||||
spandsp
|
||||
spectacle
|
||||
speedtest-cli
|
||||
speex
|
||||
speexdsp
|
||||
sphinx-feature-classification
|
||||
@@ -4779,6 +4958,7 @@ sure
|
||||
suricata
|
||||
svg.path
|
||||
svgpart
|
||||
sway
|
||||
sweeper
|
||||
swift
|
||||
swig
|
||||
@@ -4794,6 +4974,7 @@ syntax-highlighting
|
||||
sysdig
|
||||
sysfsutils
|
||||
syslinux
|
||||
sysprof
|
||||
sysstat
|
||||
systemd
|
||||
systemd-bootchart
|
||||
@@ -4824,6 +5005,7 @@ tensorboard
|
||||
tensorflow
|
||||
tensorflow-estimator
|
||||
tensorflow-probability
|
||||
tensorflow-serving
|
||||
termcolor
|
||||
terminado
|
||||
terminaltables
|
||||
@@ -4856,6 +5038,7 @@ thunderbolt-software-user-space
|
||||
tiff
|
||||
tig
|
||||
tigervnc
|
||||
tilix
|
||||
time
|
||||
tini
|
||||
tinycompress
|
||||
@@ -4907,6 +5090,7 @@ unicodecsv
|
||||
unicodedata2
|
||||
unifdef
|
||||
unison
|
||||
unit
|
||||
unittest2
|
||||
unixODBC
|
||||
unzip
|
||||
@@ -4929,7 +5113,6 @@ uwsgi
|
||||
v4l-utils
|
||||
vala
|
||||
valgrind
|
||||
varnish-cache
|
||||
vbox-integration
|
||||
vcstool
|
||||
vcversioner
|
||||
@@ -4950,6 +5133,7 @@ volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
vpnc
|
||||
vpp
|
||||
vsqlite
|
||||
vte
|
||||
waffle
|
||||
@@ -4979,6 +5163,7 @@ wine
|
||||
winpdb
|
||||
wireless-regdb-master
|
||||
wireshark
|
||||
wlroots
|
||||
wmctrl
|
||||
woff2
|
||||
wok
|
||||
@@ -4986,7 +5171,6 @@ wol
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
wsgi_intercept
|
||||
wsgiref
|
||||
wsjtx
|
||||
wxWidgets
|
||||
x11perf
|
||||
|
||||
Reference in New Issue
Block a user